pub trait IntoDegrees {
// Required method
fn into_degrees(self) -> Self;
}
Expand description
This type can convert from radians to degrees
Required Methods§
Sourcefn into_degrees(self) -> Self
fn into_degrees(self) -> Self
Consume self and return it after converting the internal elements from radians to degrees
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.