pub struct DatasetOutputConfig {
pub gcs_destination: Option<GcsOutputDestination>,
}Expand description
Output configuration for datasets.
This type is not used in any activity, and only used as part of another schema.
Fields§
§gcs_destination: Option<GcsOutputDestination>Google Cloud Storage destination to write the output.
Trait Implementations§
Source§impl Clone for DatasetOutputConfig
impl Clone for DatasetOutputConfig
Source§fn clone(&self) -> DatasetOutputConfig
fn clone(&self) -> DatasetOutputConfig
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 DatasetOutputConfig
impl Debug for DatasetOutputConfig
Source§impl Default for DatasetOutputConfig
impl Default for DatasetOutputConfig
Source§fn default() -> DatasetOutputConfig
fn default() -> DatasetOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetOutputConfig
impl<'de> Deserialize<'de> for DatasetOutputConfig
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 DatasetOutputConfig
impl Serialize for DatasetOutputConfig
impl Part for DatasetOutputConfig
Auto Trait Implementations§
impl Freeze for DatasetOutputConfig
impl RefUnwindSafe for DatasetOutputConfig
impl Send for DatasetOutputConfig
impl Sync for DatasetOutputConfig
impl Unpin for DatasetOutputConfig
impl UnwindSafe for DatasetOutputConfig
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