#[non_exhaustive]pub enum LocationOutOfBoundsError {
Latitude(f64),
Longitude(f64),
Offset(f64, f64, f64),
}
Expand description
A list of error outcomes for exceeding location bounds
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Latitude(f64)
Latitude value was out of bounds
Longitude(f64)
Longitude value was out of bounds
Offset(f64, f64, f64)
Offset value was out of bounds
Trait Implementations§
source§impl Clone for LocationOutOfBoundsError
impl Clone for LocationOutOfBoundsError
source§fn clone(&self) -> LocationOutOfBoundsError
fn clone(&self) -> LocationOutOfBoundsError
Returns a copy 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 LocationOutOfBoundsError
impl Debug for LocationOutOfBoundsError
source§impl Display for LocationOutOfBoundsError
impl Display for LocationOutOfBoundsError
source§impl PartialEq for LocationOutOfBoundsError
impl PartialEq for LocationOutOfBoundsError
source§fn eq(&self, other: &LocationOutOfBoundsError) -> bool
fn eq(&self, other: &LocationOutOfBoundsError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LocationOutOfBoundsError
impl StructuralPartialEq for LocationOutOfBoundsError
Auto Trait Implementations§
impl Freeze for LocationOutOfBoundsError
impl RefUnwindSafe for LocationOutOfBoundsError
impl Send for LocationOutOfBoundsError
impl Sync for LocationOutOfBoundsError
impl Unpin for LocationOutOfBoundsError
impl UnwindSafe for LocationOutOfBoundsError
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