pub struct GcsOutputDestination {
pub output_uri_prefix: Option<String>,
}Expand description
The Google Cloud Storage location for the output content.
This type is not used in any activity, and only used as part of another schema.
Fields§
§output_uri_prefix: Option<String>Required. Google Cloud Storage URI to output directory. For example, gs://bucket/directory. The requesting user must have write permission to the bucket. The directory will be created if it doesn’t exist.
Trait Implementations§
Source§impl Clone for GcsOutputDestination
impl Clone for GcsOutputDestination
Source§fn clone(&self) -> GcsOutputDestination
fn clone(&self) -> GcsOutputDestination
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 GcsOutputDestination
impl Debug for GcsOutputDestination
Source§impl Default for GcsOutputDestination
impl Default for GcsOutputDestination
Source§fn default() -> GcsOutputDestination
fn default() -> GcsOutputDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GcsOutputDestination
impl<'de> Deserialize<'de> for GcsOutputDestination
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GcsOutputDestination
impl Serialize for GcsOutputDestination
impl Part for GcsOutputDestination
Auto Trait Implementations§
impl Freeze for GcsOutputDestination
impl RefUnwindSafe for GcsOutputDestination
impl Send for GcsOutputDestination
impl Sync for GcsOutputDestination
impl Unpin for GcsOutputDestination
impl UnwindSafe for GcsOutputDestination
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