#[non_exhaustive]pub struct BackendBucketUsedBy {
pub reference: Option<String>,
/* private fields */
}Available on crate feature
backend-buckets only.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.reference: Option<String>Output only. [Output Only] Server-defined URL for UrlMaps referencing that BackendBucket.
Implementations§
Source§impl BackendBucketUsedBy
impl BackendBucketUsedBy
pub fn new() -> Self
Sourcepub fn set_reference<T>(self, v: T) -> Self
pub fn set_reference<T>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for BackendBucketUsedBy
impl Clone for BackendBucketUsedBy
Source§fn clone(&self) -> BackendBucketUsedBy
fn clone(&self) -> BackendBucketUsedBy
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 BackendBucketUsedBy
impl Debug for BackendBucketUsedBy
Source§impl Default for BackendBucketUsedBy
impl Default for BackendBucketUsedBy
Source§fn default() -> BackendBucketUsedBy
fn default() -> BackendBucketUsedBy
Returns the “default value” for a type. Read more
Source§impl Message for BackendBucketUsedBy
impl Message for BackendBucketUsedBy
Source§impl PartialEq for BackendBucketUsedBy
impl PartialEq for BackendBucketUsedBy
impl StructuralPartialEq for BackendBucketUsedBy
Auto Trait Implementations§
impl Freeze for BackendBucketUsedBy
impl RefUnwindSafe for BackendBucketUsedBy
impl Send for BackendBucketUsedBy
impl Sync for BackendBucketUsedBy
impl Unpin for BackendBucketUsedBy
impl UnwindSafe for BackendBucketUsedBy
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