#[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_parameter§nr_class: c_int§l: c_int§SV: *mut *mut svm_node§sv_coef: *mut *mut f64§rho: *mut f64§probA: *mut f64§probB: *mut f64§sv_indices: *mut c_int§label: *mut c_int§nSV: *mut c_int§free_sv: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for svm_model
impl RefUnwindSafe for svm_model
impl !Send for svm_model
impl !Sync for svm_model
impl Unpin for svm_model
impl UnwindSafe for svm_model
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