pub enum Scale {
Country,
LargeCity,
City,
Neighborhood,
Street,
Tree,
Human,
RoughSurveying,
PreciseSurveying,
}Variants§
Country
Countries scale is 1°0’0“
LargeCity
Large cities scale is 0°6’0“
City
Cities scale is 0°0’36“
Neighborhood
Neighborhood, Strees scale is 0°0’3.6“
Street
Single street / large buildings scale is 0°0’0.360“
Tree
Trees / small buildings scale is 0.036“
Human
Human / single individual scale is 3.6E-3“
RoughSurveying
Roughly precise scale, used in commercial devices, is 360E-6“
PreciseSurveying
Extremely precise scale, used in tectnoic plate mapping for instance, is 36E-6“
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Scale
impl RefUnwindSafe for Scale
impl Send for Scale
impl Sync for Scale
impl Unpin for Scale
impl UnwindSafe for Scale
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more