pub struct SplitInfo {Show 15 fields
pub split_gain: f32,
pub split_feature: usize,
pub split_value: f64,
pub split_bin: u16,
pub missing_right: bool,
pub left_grad: f32,
pub left_gain: f32,
pub left_cover: f32,
pub left_weight: f32,
pub left_bounds: (f32, f32),
pub right_grad: f32,
pub right_gain: f32,
pub right_cover: f32,
pub right_weight: f32,
pub right_bounds: (f32, f32),
}Fields
split_gain: f32split_feature: usizesplit_value: f64split_bin: u16missing_right: boolleft_grad: f32left_gain: f32left_cover: f32left_weight: f32left_bounds: (f32, f32)right_grad: f32right_gain: f32right_cover: f32right_weight: f32right_bounds: (f32, f32)Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SplitInfo
impl Send for SplitInfo
impl Sync for SplitInfo
impl Unpin for SplitInfo
impl UnwindSafe for SplitInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more