pub enum ChapterType {
LATEST = 0,
SEQUENCE = 1,
NOSEQUENCE = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for ChapterType
impl Clone for ChapterType
Source§fn clone(&self) -> ChapterType
fn clone(&self) -> ChapterType
Returns a copy 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 ChapterType
impl Debug for ChapterType
Source§impl Default for ChapterType
impl Default for ChapterType
Source§impl<'de> Deserialize<'de> for ChapterType
impl<'de> Deserialize<'de> for ChapterType
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<'a> From<&'a str> for ChapterType
impl<'a> From<&'a str> for ChapterType
Source§impl From<i32> for ChapterType
impl From<i32> for ChapterType
Source§impl PartialEq for ChapterType
impl PartialEq for ChapterType
Source§impl Serialize for ChapterType
impl Serialize for ChapterType
impl Copy for ChapterType
impl Eq for ChapterType
impl StructuralPartialEq for ChapterType
Auto Trait Implementations§
impl Freeze for ChapterType
impl RefUnwindSafe for ChapterType
impl Send for ChapterType
impl Sync for ChapterType
impl Unpin for ChapterType
impl UnwindSafe for ChapterType
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