pub enum MlDatasetKind {
Tabular,
Text,
Image,
Audio,
Video,
TimeSeries,
Graph,
Multimodal,
Synthetic,
Other,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlDatasetKind
impl Clone for MlDatasetKind
Source§fn clone(&self) -> MlDatasetKind
fn clone(&self) -> MlDatasetKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MlDatasetKind
impl Debug for MlDatasetKind
Source§impl Display for MlDatasetKind
impl Display for MlDatasetKind
Source§impl FromStr for MlDatasetKind
impl FromStr for MlDatasetKind
Source§type Err = MlDatasetError
type Err = MlDatasetError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<MlDatasetKind, <MlDatasetKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlDatasetKind, <MlDatasetKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for MlDatasetKind
impl Hash for MlDatasetKind
Source§impl Ord for MlDatasetKind
impl Ord for MlDatasetKind
Source§fn cmp(&self, other: &MlDatasetKind) -> Ordering
fn cmp(&self, other: &MlDatasetKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MlDatasetKind
impl PartialEq for MlDatasetKind
Source§fn eq(&self, other: &MlDatasetKind) -> bool
fn eq(&self, other: &MlDatasetKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlDatasetKind
impl PartialOrd for MlDatasetKind
impl Copy for MlDatasetKind
impl Eq for MlDatasetKind
impl StructuralPartialEq for MlDatasetKind
Auto Trait Implementations§
impl Freeze for MlDatasetKind
impl RefUnwindSafe for MlDatasetKind
impl Send for MlDatasetKind
impl Sync for MlDatasetKind
impl Unpin for MlDatasetKind
impl UnsafeUnpin for MlDatasetKind
impl UnwindSafe for MlDatasetKind
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