pub struct DatasetInputConfig {
pub input_files: Option<Vec<InputFile>>,
}Expand description
Input configuration for datasets.
This type is not used in any activity, and only used as part of another schema.
Fields§
§input_files: Option<Vec<InputFile>>Files containing the sentence pairs to be imported to the dataset.
Trait Implementations§
Source§impl Clone for DatasetInputConfig
impl Clone for DatasetInputConfig
Source§fn clone(&self) -> DatasetInputConfig
fn clone(&self) -> DatasetInputConfig
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 DatasetInputConfig
impl Debug for DatasetInputConfig
Source§impl Default for DatasetInputConfig
impl Default for DatasetInputConfig
Source§fn default() -> DatasetInputConfig
fn default() -> DatasetInputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetInputConfig
impl<'de> Deserialize<'de> for DatasetInputConfig
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 DatasetInputConfig
impl Serialize for DatasetInputConfig
impl Part for DatasetInputConfig
Auto Trait Implementations§
impl Freeze for DatasetInputConfig
impl RefUnwindSafe for DatasetInputConfig
impl Send for DatasetInputConfig
impl Sync for DatasetInputConfig
impl Unpin for DatasetInputConfig
impl UnwindSafe for DatasetInputConfig
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