pub trait IntoAngle<T> {
// Required method
fn into_angle(self) -> T;
}
Expand description
Performs value-to-value conversion between angle types. See also IntoAngle
.
Required Methods§
sourcefn into_angle(self) -> T
fn into_angle(self) -> T
Performs a conversion into T
.