#[non_exhaustive]pub struct DestinationGcsBucket {
pub uri: String,
/* private fields */
}Expand description
Cloud Storage as the destination of a data transfer.
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.uri: StringRequired. URI to a Cloud Storage bucket in the format:
gs://<bucket_name>/<path_inside_bucket>. The path inside the bucket is
optional.
Implementations§
Trait Implementations§
Source§impl Clone for DestinationGcsBucket
impl Clone for DestinationGcsBucket
Source§fn clone(&self) -> DestinationGcsBucket
fn clone(&self) -> DestinationGcsBucket
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 DestinationGcsBucket
impl Debug for DestinationGcsBucket
Source§impl Default for DestinationGcsBucket
impl Default for DestinationGcsBucket
Source§fn default() -> DestinationGcsBucket
fn default() -> DestinationGcsBucket
Returns the “default value” for a type. Read more
Source§impl Message for DestinationGcsBucket
impl Message for DestinationGcsBucket
Source§impl PartialEq for DestinationGcsBucket
impl PartialEq for DestinationGcsBucket
impl StructuralPartialEq for DestinationGcsBucket
Auto Trait Implementations§
impl Freeze for DestinationGcsBucket
impl RefUnwindSafe for DestinationGcsBucket
impl Send for DestinationGcsBucket
impl Sync for DestinationGcsBucket
impl Unpin for DestinationGcsBucket
impl UnwindSafe for DestinationGcsBucket
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