pub struct GcsDestination {
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. The bucket used in ‘output_uri_prefix’ must exist and there must be no files under ‘output_uri_prefix’. ‘output_uri_prefix’ must end with “/” and start with “gs://”. One ‘output_uri_prefix’ can only be used by one batch translation job at a time. Otherwise an INVALID_ARGUMENT (400) error is returned.
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<'de> Deserialize<'de> for GcsDestination
impl<'de> Deserialize<'de> for GcsDestination
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 GcsDestination
impl Serialize for GcsDestination
impl Part 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