pub struct ConsoleProgressCallback { /* private fields */ }Expand description
Default progress callback that prints to console
Implementations§
Trait Implementations§
Source§impl AutoMLProgressCallback for ConsoleProgressCallback
impl AutoMLProgressCallback for ConsoleProgressCallback
fn on_stage_start(&mut self, stage: AutoMLStage, message: &str)
fn on_stage_progress( &mut self, stage: AutoMLStage, progress: f64, message: &str, )
fn on_stage_complete( &mut self, stage: AutoMLStage, duration: f64, message: &str, )
Auto Trait Implementations§
impl Freeze for ConsoleProgressCallback
impl RefUnwindSafe for ConsoleProgressCallback
impl Send for ConsoleProgressCallback
impl Sync for ConsoleProgressCallback
impl Unpin for ConsoleProgressCallback
impl UnsafeUnpin for ConsoleProgressCallback
impl UnwindSafe for ConsoleProgressCallback
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