google_cloud_storage/control.rs
1// Copyright 2025 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15pub mod builder {
16 pub use crate::generated::gapic::builder::storage_control::*;
17 pub use crate::generated::gapic_control::builder::storage_control::*;
18}
19pub mod model {
20 pub use crate::generated::gapic::model::*;
21 pub use crate::generated::gapic_control::model::*;
22}
23pub mod client;
24/// Traits to mock the clients in this library.
25///
26/// Application developers may need to mock the clients in this library to test
27/// how their application works with different (and sometimes hard to trigger)
28/// client and service behavior. Such test can define mocks implementing the
29/// trait(s) defined in this module, initialize the client with an instance of
30/// this mock in their tests, and verify their application responds as expected.
31pub use generated::stub;
32
33mod convert;
34mod status;
35
36mod generated;