pub enum BoundaryKind {
Political,
Administrative,
Natural,
Coastline,
River,
Watershed,
Property,
ProtectedArea,
Maritime,
Unknown,
Custom(String),
}Variants§
Political
Administrative
Natural
Coastline
River
Watershed
Property
ProtectedArea
Maritime
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for BoundaryKind
impl Clone for BoundaryKind
Source§fn clone(&self) -> BoundaryKind
fn clone(&self) -> BoundaryKind
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 moreSource§impl Debug for BoundaryKind
impl Debug for BoundaryKind
Source§impl Display for BoundaryKind
impl Display for BoundaryKind
Source§impl FromStr for BoundaryKind
impl FromStr for BoundaryKind
Source§impl Hash for BoundaryKind
impl Hash for BoundaryKind
Source§impl Ord for BoundaryKind
impl Ord for BoundaryKind
Source§fn cmp(&self, other: &BoundaryKind) -> Ordering
fn cmp(&self, other: &BoundaryKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BoundaryKind
impl PartialEq for BoundaryKind
Source§fn eq(&self, other: &BoundaryKind) -> bool
fn eq(&self, other: &BoundaryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BoundaryKind
impl PartialOrd for BoundaryKind
impl Eq for BoundaryKind
impl StructuralPartialEq for BoundaryKind
Auto Trait Implementations§
impl Freeze for BoundaryKind
impl RefUnwindSafe for BoundaryKind
impl Send for BoundaryKind
impl Sync for BoundaryKind
impl Unpin for BoundaryKind
impl UnsafeUnpin for BoundaryKind
impl UnwindSafe for BoundaryKind
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