pub enum BoundaryStatus {
Official,
Disputed,
Approximate,
Historical,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for BoundaryStatus
impl Clone for BoundaryStatus
Source§fn clone(&self) -> BoundaryStatus
fn clone(&self) -> BoundaryStatus
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 BoundaryStatus
impl Debug for BoundaryStatus
Source§impl Display for BoundaryStatus
impl Display for BoundaryStatus
Source§impl FromStr for BoundaryStatus
impl FromStr for BoundaryStatus
Source§impl Hash for BoundaryStatus
impl Hash for BoundaryStatus
Source§impl Ord for BoundaryStatus
impl Ord for BoundaryStatus
Source§fn cmp(&self, other: &BoundaryStatus) -> Ordering
fn cmp(&self, other: &BoundaryStatus) -> 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 BoundaryStatus
impl PartialEq for BoundaryStatus
Source§fn eq(&self, other: &BoundaryStatus) -> bool
fn eq(&self, other: &BoundaryStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BoundaryStatus
impl PartialOrd for BoundaryStatus
impl Eq for BoundaryStatus
impl StructuralPartialEq for BoundaryStatus
Auto Trait Implementations§
impl Freeze for BoundaryStatus
impl RefUnwindSafe for BoundaryStatus
impl Send for BoundaryStatus
impl Sync for BoundaryStatus
impl Unpin for BoundaryStatus
impl UnsafeUnpin for BoundaryStatus
impl UnwindSafe for BoundaryStatus
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