pub struct DecisionStump {
pub feature_idx: usize,
pub threshold: f64,
pub polarity: i32,
}Fields§
§feature_idx: usize§threshold: f64§polarity: i32Implementations§
Auto Trait Implementations§
impl Freeze for DecisionStump
impl RefUnwindSafe for DecisionStump
impl Send for DecisionStump
impl Sync for DecisionStump
impl Unpin for DecisionStump
impl UnsafeUnpin for DecisionStump
impl UnwindSafe for DecisionStump
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