pub trait Convert<T> {
// Required method
fn convert(&self) -> T;
}
Expand description
A value-to-value conversion that does not consume the input value.
This is as opposed to Into
, which consumes the input value.
pub trait Convert<T> {
// Required method
fn convert(&self) -> T;
}
A value-to-value conversion that does not consume the input value.
This is as opposed to Into
, which consumes the input value.