pub enum LoadStatus {
Empty,
PartialLoad,
FullLoad,
Overloaded,
}Expand description
Load status.
Variants§
Trait Implementations§
Source§impl Clone for LoadStatus
impl Clone for LoadStatus
Source§fn clone(&self) -> LoadStatus
fn clone(&self) -> LoadStatus
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 LoadStatus
impl Debug for LoadStatus
Source§impl Default for LoadStatus
impl Default for LoadStatus
Source§fn default() -> LoadStatus
fn default() -> LoadStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoadStatus
impl<'de> Deserialize<'de> for LoadStatus
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 Hash for LoadStatus
impl Hash for LoadStatus
Source§impl PartialEq for LoadStatus
impl PartialEq for LoadStatus
Source§impl Serialize for LoadStatus
impl Serialize for LoadStatus
impl Copy for LoadStatus
impl Eq for LoadStatus
impl StructuralPartialEq for LoadStatus
Auto Trait Implementations§
impl Freeze for LoadStatus
impl RefUnwindSafe for LoadStatus
impl Send for LoadStatus
impl Sync for LoadStatus
impl Unpin for LoadStatus
impl UnwindSafe for LoadStatus
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.