pub struct SplitInfo {
pub split_gain: f32,
pub split_feature: usize,
pub split_value: f64,
pub split_bin: u16,
pub left_node: NodeInfo,
pub right_node: NodeInfo,
pub missing_node: MissingInfo,
}Fields§
§split_gain: f32§split_feature: usize§split_value: f64§split_bin: u16§left_node: NodeInfo§right_node: NodeInfo§missing_node: MissingInfoTrait Implementations§
Auto Trait Implementations§
impl Freeze for SplitInfo
impl RefUnwindSafe for SplitInfo
impl Send for SplitInfo
impl Sync for SplitInfo
impl Unpin for SplitInfo
impl UnwindSafe for SplitInfo
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more