pub struct StormCellBounds { /* private fields */ }Expand description
Geographic bounding box of a storm cell.
Implementations§
Source§impl StormCellBounds
impl StormCellBounds
Sourcepub fn min_latitude(&self) -> f64
pub fn min_latitude(&self) -> f64
Minimum latitude (southern edge).
Sourcepub fn max_latitude(&self) -> f64
pub fn max_latitude(&self) -> f64
Maximum latitude (northern edge).
Sourcepub fn min_longitude(&self) -> f64
pub fn min_longitude(&self) -> f64
Minimum longitude (western edge).
Sourcepub fn max_longitude(&self) -> f64
pub fn max_longitude(&self) -> f64
Maximum longitude (eastern edge).
Trait Implementations§
Source§impl Clone for StormCellBounds
impl Clone for StormCellBounds
Source§fn clone(&self) -> StormCellBounds
fn clone(&self) -> StormCellBounds
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 StormCellBounds
impl Debug for StormCellBounds
Source§impl PartialEq for StormCellBounds
impl PartialEq for StormCellBounds
impl Copy for StormCellBounds
impl StructuralPartialEq for StormCellBounds
Auto Trait Implementations§
impl Freeze for StormCellBounds
impl RefUnwindSafe for StormCellBounds
impl Send for StormCellBounds
impl Sync for StormCellBounds
impl Unpin for StormCellBounds
impl UnsafeUnpin for StormCellBounds
impl UnwindSafe for StormCellBounds
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