#[repr(i32)]pub enum SVM_ParamTypes {
C = 0,
GAMMA = 1,
P = 2,
NU = 3,
COEF = 4,
DEGREE = 5,
}
Expand description
%SVM params type
Variants§
Trait Implementations§
Source§impl Clone for SVM_ParamTypes
impl Clone for SVM_ParamTypes
Source§fn clone(&self) -> SVM_ParamTypes
fn clone(&self) -> SVM_ParamTypes
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 SVM_ParamTypes
impl Debug for SVM_ParamTypes
Source§impl From<SVM_ParamTypes> for i32
impl From<SVM_ParamTypes> for i32
Source§fn from(v: SVM_ParamTypes) -> Self
fn from(v: SVM_ParamTypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SVM_ParamTypes
impl PartialEq for SVM_ParamTypes
Source§impl TryFrom<i32> for SVM_ParamTypes
impl TryFrom<i32> for SVM_ParamTypes
impl Copy for SVM_ParamTypes
impl Eq for SVM_ParamTypes
impl StructuralPartialEq for SVM_ParamTypes
Auto Trait Implementations§
impl Freeze for SVM_ParamTypes
impl RefUnwindSafe for SVM_ParamTypes
impl Send for SVM_ParamTypes
impl Sync for SVM_ParamTypes
impl Unpin for SVM_ParamTypes
impl UnwindSafe for SVM_ParamTypes
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