pub trait TaggedSquare<Strategy> {
// Required method
fn square(self) -> Self;
}
Expand description
Square operation that is parameterized with some some strategy.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait TaggedSquare<Strategy> {
// Required method
fn square(self) -> Self;
}
Square operation that is parameterized with some some strategy.