pub struct TissotCell {
pub lon: f64,
pub lat: f64,
pub semi_major: f64,
pub semi_minor: f64,
pub angular_distortion: f64,
pub areal_scale: f64,
pub meridian_scale: f64,
pub parallel_scale: f64,
pub meridian_convergence: f64,
pub is_conformal: bool,
pub is_equal_area: bool,
pub method: TissotMethod,
}Expand description
One cell in the distortion raster.
Fields§
§lon: f64§lat: f64§semi_major: f64§semi_minor: f64§angular_distortion: f64§areal_scale: f64§meridian_scale: f64§parallel_scale: f64§meridian_convergence: f64§is_conformal: bool§is_equal_area: bool§method: TissotMethodTrait Implementations§
Source§impl Clone for TissotCell
impl Clone for TissotCell
Source§fn clone(&self) -> TissotCell
fn clone(&self) -> TissotCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TissotCell
impl RefUnwindSafe for TissotCell
impl Send for TissotCell
impl Sync for TissotCell
impl Unpin for TissotCell
impl UnsafeUnpin for TissotCell
impl UnwindSafe for TissotCell
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