pub enum ContentStatus {
Loaded,
Exists,
Error,
}Expand description
Outcome of attempting to load a Content entry.
Variants§
Loaded
The content was freshly loaded and injected into the DOM.
Exists
The content was already loaded; nothing was done.
Error
Loading failed.
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ContentStatus
impl RefUnwindSafe for ContentStatus
impl Send for ContentStatus
impl Sync for ContentStatus
impl Unpin for ContentStatus
impl UnsafeUnpin for ContentStatus
impl UnwindSafe for ContentStatus
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