pub enum JournalState {
Offline = 0,
Online = 1,
Archived = 2,
}Variants§
Trait Implementations§
Source§impl Clone for JournalState
impl Clone for JournalState
Source§fn clone(&self) -> JournalState
fn clone(&self) -> JournalState
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 moreimpl Copy for JournalState
Source§impl Debug for JournalState
impl Debug for JournalState
Source§impl Display for JournalState
impl Display for JournalState
impl Eq for JournalState
Source§impl PartialEq for JournalState
impl PartialEq for JournalState
Source§fn eq(&self, other: &JournalState) -> bool
fn eq(&self, other: &JournalState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JournalState
Auto Trait Implementations§
impl Freeze for JournalState
impl RefUnwindSafe for JournalState
impl Send for JournalState
impl Sync for JournalState
impl Unpin for JournalState
impl UnsafeUnpin for JournalState
impl UnwindSafe for JournalState
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