pub enum ContentStatus {
    Complete,
    Incomplete,
    Missing,
}Expand description
Whether the content status is available on a node.
Variants§
Complete
The content is completely available.
Incomplete
The content is partially available.
Missing
The content is missing.
Trait Implementations§
Source§impl Clone for ContentStatus
 
impl Clone for ContentStatus
Source§fn clone(&self) -> ContentStatus
 
fn clone(&self) -> ContentStatus
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 ContentStatus
 
impl Debug for ContentStatus
Source§impl<'de> Deserialize<'de> for ContentStatus
 
impl<'de> Deserialize<'de> for ContentStatus
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 PartialEq for ContentStatus
 
impl PartialEq for ContentStatus
Source§impl Serialize for ContentStatus
 
impl Serialize for ContentStatus
impl Copy for ContentStatus
impl Eq for ContentStatus
impl StructuralPartialEq for ContentStatus
Auto Trait Implementations§
impl Freeze for ContentStatus
impl RefUnwindSafe for ContentStatus
impl Send for ContentStatus
impl Sync for ContentStatus
impl Unpin for ContentStatus
impl UnwindSafe for ContentStatus
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
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§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.