pub trait IntoRad<T> { // Required method fn into_rad(&self) -> T; }
All objects implementing the IntoRad trait can be converted into radians
IntoRad