pub enum RadiusMode {
Mean,
Unity,
Custom(f64),
}Expand description
📚 【 POL】: Tryb promienia używany w obliczeniach łukowych i konwersjach DMS. 📚 【 ENG】: Radius mode used in arc calculations and DMS conversions.
Variants§
Mean
📚 【 POL】: Średni promień Ziemi (6,371,000 m). 📚 【 ENG】: Mean Earth radius (6,371,000 m).
Unity
📚 【 POL】: Jedność (1.0) - przydatne do obliczeń znormalizowanych. 📚 【 ENG】: Unity (1.0) - useful for normalized calculations.
Custom(f64)
📚 【 POL】: Własny promień podany w metrach. 📚 【 ENG】: Custom radius provided in meters.
Implementations§
Trait Implementations§
Source§impl Clone for RadiusMode
impl Clone for RadiusMode
Source§fn clone(&self) -> RadiusMode
fn clone(&self) -> RadiusMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RadiusMode
impl Debug for RadiusMode
Source§impl PartialEq for RadiusMode
impl PartialEq for RadiusMode
impl Copy for RadiusMode
impl StructuralPartialEq for RadiusMode
Auto Trait Implementations§
impl Freeze for RadiusMode
impl RefUnwindSafe for RadiusMode
impl Send for RadiusMode
impl Sync for RadiusMode
impl Unpin for RadiusMode
impl UnsafeUnpin for RadiusMode
impl UnwindSafe for RadiusMode
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