#[non_exhaustive]pub struct GcsDestination {
pub uri: String,
/* private fields */
}Expand description
The Google Cloud Storage location where the output file will be written to.
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 of the Google Cloud Storage location.
Implementations§
Trait Implementations§
Source§impl Clone for GcsDestination
impl Clone for GcsDestination
Source§fn clone(&self) -> GcsDestination
fn clone(&self) -> GcsDestination
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 GcsDestination
impl Debug for GcsDestination
Source§impl Default for GcsDestination
impl Default for GcsDestination
Source§fn default() -> GcsDestination
fn default() -> GcsDestination
Returns the “default value” for a type. Read more
Source§impl Message for GcsDestination
impl Message for GcsDestination
Source§impl PartialEq for GcsDestination
impl PartialEq for GcsDestination
impl StructuralPartialEq for GcsDestination
Auto Trait Implementations§
impl Freeze for GcsDestination
impl RefUnwindSafe for GcsDestination
impl Send for GcsDestination
impl Sync for GcsDestination
impl Unpin for GcsDestination
impl UnwindSafe for GcsDestination
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