pub enum LeaseStatus {
Locked,
Unlocked,
}
Variants§
Trait Implementations§
source§impl AsRef<str> for LeaseStatus
impl AsRef<str> for LeaseStatus
source§impl Clone for LeaseStatus
impl Clone for LeaseStatus
source§fn clone(&self) -> LeaseStatus
fn clone(&self) -> LeaseStatus
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 LeaseStatus
impl Debug for LeaseStatus
source§impl<'de> Deserialize<'de> for LeaseStatus
impl<'de> Deserialize<'de> for LeaseStatus
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
source§impl Display for LeaseStatus
impl Display for LeaseStatus
source§impl From<LeaseStatus> for &'static str
impl From<LeaseStatus> for &'static str
source§fn from(e: LeaseStatus) -> Self
fn from(e: LeaseStatus) -> Self
Converts to this type from the input type.
source§impl FromStr for LeaseStatus
impl FromStr for LeaseStatus
source§impl FromStringOptional<LeaseStatus> for LeaseStatus
impl FromStringOptional<LeaseStatus> for LeaseStatus
fn from_str_optional(s: &str) -> Result<LeaseStatus>
source§impl PartialEq for LeaseStatus
impl PartialEq for LeaseStatus
source§impl PartialOrd for LeaseStatus
impl PartialOrd for LeaseStatus
source§impl Serialize for LeaseStatus
impl Serialize for LeaseStatus
impl Copy for LeaseStatus
impl Eq for LeaseStatus
impl StructuralPartialEq for LeaseStatus
Auto Trait Implementations§
impl Freeze for LeaseStatus
impl RefUnwindSafe for LeaseStatus
impl Send for LeaseStatus
impl Sync for LeaseStatus
impl Unpin for LeaseStatus
impl UnwindSafe for LeaseStatus
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.