pub trait Shortcuts {
// Provided methods
fn classification(self) -> Classification<Self>
where Classification<Self>: Op,
Self: Sized { ... }
fn regression(self) -> Regression<Self>
where Regression<Self>: Op,
Self: Sized { ... }
fn wrap(self) -> Wrapped<Self>
where Self: Wrappable { ... }
}Expand description
chained method shortcut trait
Provided Methods§
Sourcefn classification(self) -> Classification<Self>
fn classification(self) -> Classification<Self>
wraps in a classification wrapper
Sourcefn regression(self) -> Regression<Self>
fn regression(self) -> Regression<Self>
wraps in a regression wrapper