#[non_exhaustive]pub struct GetBucketRequest {
pub name: String,
pub if_metageneration_match: Option<i64>,
pub if_metageneration_not_match: Option<i64>,
pub read_mask: Option<FieldMask>,
/* private fields */
}Expand description
Request message for GetBucket.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of a bucket.
if_metageneration_match: Option<i64>If set, and if the bucket’s current metageneration does not match the specified value, the request will return an error.
if_metageneration_not_match: Option<i64>If set, and if the bucket’s current metageneration matches the specified value, the request will return an error.
read_mask: Option<FieldMask>Mask specifying which fields to read. A “*” field may be used to indicate all fields. If no mask is specified, will default to all fields.
Implementations§
Source§impl GetBucketRequest
impl GetBucketRequest
pub fn new() -> Self
Sourcepub fn set_if_metageneration_match<T>(self, v: T) -> Self
pub fn set_if_metageneration_match<T>(self, v: T) -> Self
Sets the value of if_metageneration_match.
Sourcepub fn set_or_clear_if_metageneration_match<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_if_metageneration_match<T>(self, v: Option<T>) -> Self
Sets or clears the value of if_metageneration_match.
Sourcepub fn set_if_metageneration_not_match<T>(self, v: T) -> Self
pub fn set_if_metageneration_not_match<T>(self, v: T) -> Self
Sets the value of if_metageneration_not_match.
Sourcepub fn set_or_clear_if_metageneration_not_match<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_if_metageneration_not_match<T>(self, v: Option<T>) -> Self
Sets or clears the value of if_metageneration_not_match.
Sourcepub fn set_read_mask<T>(self, v: T) -> Self
pub fn set_read_mask<T>(self, v: T) -> Self
Sets the value of read_mask.
Trait Implementations§
Source§impl Clone for GetBucketRequest
impl Clone for GetBucketRequest
Source§fn clone(&self) -> GetBucketRequest
fn clone(&self) -> GetBucketRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetBucketRequest
impl Debug for GetBucketRequest
Source§impl Default for GetBucketRequest
impl Default for GetBucketRequest
Source§fn default() -> GetBucketRequest
fn default() -> GetBucketRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetBucketRequest
impl Message for GetBucketRequest
Source§impl PartialEq for GetBucketRequest
impl PartialEq for GetBucketRequest
impl StructuralPartialEq for GetBucketRequest
Auto Trait Implementations§
impl Freeze for GetBucketRequest
impl RefUnwindSafe for GetBucketRequest
impl Send for GetBucketRequest
impl Sync for GetBucketRequest
impl Unpin for GetBucketRequest
impl UnwindSafe for GetBucketRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request