Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/storage/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ pub mod builder {
//! Request builders.
pub mod storage {
//! Request builders for [Storage][crate::client::Storage].
#[cfg(google_cloud_unstable_storage_bidi)]
pub use crate::storage::append_object::builder::OpenAppendableObject;
#[cfg(google_cloud_unstable_storage_bidi)]
pub use crate::storage::append_object::writer::AppendableObjectWriter;
pub use crate::storage::client::ClientBuilder;
pub use crate::storage::open_object::OpenObject;
pub use crate::storage::read_object::ReadObject;
Expand Down
2 changes: 1 addition & 1 deletion src/storage/src/model_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ pub struct WriteObjectRequest {
/// Represents the parameters of a request to open a new object for exclusive appends.
///
/// Consumers of the `google-cloud-storage` crate rarely have a need to use this type directly, the most common exception is when mocking of the `Storage` client.
#[derive(Debug, PartialEq)]
#[derive(Clone, Debug, PartialEq)]
#[non_exhaustive]
pub struct OpenAppendableObjectRequest {
/// The object attributes and pre-conditions for the open operation.
Expand Down
3 changes: 3 additions & 0 deletions src/storage/src/storage/append_object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
// limitations under the License.

//! Appendable object uploads (unstable).
pub(crate) mod builder;
pub(crate) mod writer;
Loading
Loading