pub enum MangaStatus {
Unknown = 0,
Ongoing = 1,
Completed = 2,
Cancelled = 3,
Hiatus = 4,
}Expand description
The publishing status of a manga.
Variants§
Trait Implementations§
Source§impl Clone for MangaStatus
impl Clone for MangaStatus
Source§fn clone(&self) -> MangaStatus
fn clone(&self) -> MangaStatus
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 MangaStatus
impl Debug for MangaStatus
Source§impl Default for MangaStatus
impl Default for MangaStatus
Source§fn default() -> MangaStatus
fn default() -> MangaStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MangaStatus
impl<'de> Deserialize<'de> for MangaStatus
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 MangaStatus
impl PartialEq for MangaStatus
Source§impl Serialize for MangaStatus
impl Serialize for MangaStatus
impl Copy for MangaStatus
impl Eq for MangaStatus
impl StructuralPartialEq for MangaStatus
Auto Trait Implementations§
impl Freeze for MangaStatus
impl RefUnwindSafe for MangaStatus
impl Send for MangaStatus
impl Sync for MangaStatus
impl Unpin for MangaStatus
impl UnwindSafe for MangaStatus
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
Compare self to
key and return true if they are equal.