pub struct FitOutcome {
pub tree: Tree,
pub statistics: Statistics,
pub status: SearchStatus,
}Expand description
The result of a fit.
Fields§
§tree: TreeThe best tree found.
statistics: StatisticsSearch counters and the training error of tree.
status: SearchStatusWhy the search stopped.
Implementations§
Trait Implementations§
Source§impl Clone for FitOutcome
impl Clone for FitOutcome
Source§fn clone(&self) -> FitOutcome
fn clone(&self) -> FitOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FitOutcome
impl RefUnwindSafe for FitOutcome
impl Send for FitOutcome
impl Sync for FitOutcome
impl Unpin for FitOutcome
impl UnsafeUnpin for FitOutcome
impl UnwindSafe for FitOutcome
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