#[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 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 LocationOutOfBoundsError
impl Debug for LocationOutOfBoundsError
Source§impl Display for LocationOutOfBoundsError
impl Display for LocationOutOfBoundsError
Source§impl Error for LocationOutOfBoundsError
impl Error for LocationOutOfBoundsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for LocationOutOfBoundsError
impl PartialEq for LocationOutOfBoundsError
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