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