[][src]Struct libsvm_sys::svm_model

#[repr(C)]
pub struct svm_model {
    pub param: svm_parameter,
    pub nr_class: c_int,
    pub l: c_int,
    pub SV: *mut *mut svm_node,
    pub sv_coef: *mut *mut f64,
    pub rho: *mut f64,
    pub probA: *mut f64,
    pub probB: *mut f64,
    pub sv_indices: *mut c_int,
    pub label: *mut c_int,
    pub nSV: *mut c_int,
    pub free_sv: c_int,
}

Fields

param: svm_parameternr_class: c_intl: c_intSV: *mut *mut svm_nodesv_coef: *mut *mut f64rho: *mut f64probA: *mut f64probB: *mut f64sv_indices: *mut c_intlabel: *mut c_intnSV: *mut c_intfree_sv: c_int

Trait Implementations

impl Clone for svm_model[src]

impl Copy for svm_model[src]

impl Debug for svm_model[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.