pub enum LocationQuality {
Exact,
Approximate,
PageOnly,
Unknown,
}Expand description
How precise the recorded location is (RFC-006 §8 vocabulary, shared here because extraction produces the locations).
Variants§
Trait Implementations§
Source§impl Clone for LocationQuality
impl Clone for LocationQuality
Source§fn clone(&self) -> LocationQuality
fn clone(&self) -> LocationQuality
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 moreimpl Copy for LocationQuality
Source§impl Debug for LocationQuality
impl Debug for LocationQuality
Source§impl<'de> Deserialize<'de> for LocationQuality
impl<'de> Deserialize<'de> for LocationQuality
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LocationQuality
Source§impl PartialEq for LocationQuality
impl PartialEq for LocationQuality
Source§fn eq(&self, other: &LocationQuality) -> bool
fn eq(&self, other: &LocationQuality) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocationQuality
impl Serialize for LocationQuality
impl StructuralPartialEq for LocationQuality
Auto Trait Implementations§
impl Freeze for LocationQuality
impl RefUnwindSafe for LocationQuality
impl Send for LocationQuality
impl Sync for LocationQuality
impl Unpin for LocationQuality
impl UnsafeUnpin for LocationQuality
impl UnwindSafe for LocationQuality
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