#[non_exhaustive]pub struct GcsInputSource {
pub input_uri: String,
/* private fields */
}Expand description
The Google Cloud Storage location for the input content.
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.input_uri: StringRequired. Source data URI. For example, gs://my_bucket/my_object.
Implementations§
Trait Implementations§
Source§impl Clone for GcsInputSource
impl Clone for GcsInputSource
Source§fn clone(&self) -> GcsInputSource
fn clone(&self) -> GcsInputSource
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 GcsInputSource
impl Debug for GcsInputSource
Source§impl Default for GcsInputSource
impl Default for GcsInputSource
Source§fn default() -> GcsInputSource
fn default() -> GcsInputSource
Returns the “default value” for a type. Read more
Source§impl Message for GcsInputSource
impl Message for GcsInputSource
Source§impl PartialEq for GcsInputSource
impl PartialEq for GcsInputSource
impl StructuralPartialEq for GcsInputSource
Auto Trait Implementations§
impl Freeze for GcsInputSource
impl RefUnwindSafe for GcsInputSource
impl Send for GcsInputSource
impl Sync for GcsInputSource
impl Unpin for GcsInputSource
impl UnsafeUnpin for GcsInputSource
impl UnwindSafe for GcsInputSource
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