pub enum MlModelKind {
Classical,
Linear,
TreeBased,
Kernel,
NeuralNetwork,
Transformer,
Diffusion,
Ensemble,
RuleBased,
Hybrid,
Other,
}Variants§
Classical
Linear
TreeBased
Kernel
NeuralNetwork
Transformer
Diffusion
Ensemble
RuleBased
Hybrid
Other
Implementations§
Trait Implementations§
Source§impl Clone for MlModelKind
impl Clone for MlModelKind
Source§fn clone(&self) -> MlModelKind
fn clone(&self) -> MlModelKind
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 MlModelKind
impl Debug for MlModelKind
Source§impl Display for MlModelKind
impl Display for MlModelKind
Source§impl FromStr for MlModelKind
impl FromStr for MlModelKind
Source§impl Hash for MlModelKind
impl Hash for MlModelKind
Source§impl Ord for MlModelKind
impl Ord for MlModelKind
Source§fn cmp(&self, other: &MlModelKind) -> Ordering
fn cmp(&self, other: &MlModelKind) -> 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 MlModelKind
impl PartialEq for MlModelKind
Source§fn eq(&self, other: &MlModelKind) -> bool
fn eq(&self, other: &MlModelKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlModelKind
impl PartialOrd for MlModelKind
impl Copy for MlModelKind
impl Eq for MlModelKind
impl StructuralPartialEq for MlModelKind
Auto Trait Implementations§
impl Freeze for MlModelKind
impl RefUnwindSafe for MlModelKind
impl Send for MlModelKind
impl Sync for MlModelKind
impl Unpin for MlModelKind
impl UnsafeUnpin for MlModelKind
impl UnwindSafe for MlModelKind
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