#[non_exhaustive]pub struct GetTerseBucketConfigOptions<'a> {
pub on_behalf_of_info: Option<&'a OnBehalfOfInfo>,
pub bucket_name: &'a str,
}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.on_behalf_of_info: Option<&'a OnBehalfOfInfo>§bucket_name: &'a strTrait Implementations§
Source§impl<'a> Clone for GetTerseBucketConfigOptions<'a>
impl<'a> Clone for GetTerseBucketConfigOptions<'a>
Source§fn clone(&self) -> GetTerseBucketConfigOptions<'a>
fn clone(&self) -> GetTerseBucketConfigOptions<'a>
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<'a> Debug for GetTerseBucketConfigOptions<'a>
impl<'a> Debug for GetTerseBucketConfigOptions<'a>
Source§impl<'a> PartialEq for GetTerseBucketConfigOptions<'a>
impl<'a> PartialEq for GetTerseBucketConfigOptions<'a>
Source§fn eq(&self, other: &GetTerseBucketConfigOptions<'a>) -> bool
fn eq(&self, other: &GetTerseBucketConfigOptions<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Eq for GetTerseBucketConfigOptions<'a>
impl<'a> StructuralPartialEq for GetTerseBucketConfigOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for GetTerseBucketConfigOptions<'a>
impl<'a> RefUnwindSafe for GetTerseBucketConfigOptions<'a>
impl<'a> Send for GetTerseBucketConfigOptions<'a>
impl<'a> Sync for GetTerseBucketConfigOptions<'a>
impl<'a> Unpin for GetTerseBucketConfigOptions<'a>
impl<'a> UnsafeUnpin for GetTerseBucketConfigOptions<'a>
impl<'a> UnwindSafe for GetTerseBucketConfigOptions<'a>
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