pub trait Multiple {
type Output;
// Required method
fn multiple(self, n: usize) -> Self::Output;
}
Expand description
Interface for computing a multiple.
Required Associated Types§
Sourcetype Output
type Output
The return type of Multiple::multiple()
.