pub enum Viewer {
Unknown = 0,
LeftToRight = 1,
RightToLeft = 2,
Vertical = 3,
Webtoon = 4,
}Expand description
The proper reading viewer for a manga.
This is used for automatic selection of the reader view in Aidoku.
RightToLeft is used for manga, LeftToRight is for western comics,
and Webtoon is used for manhwa and manhua.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Viewer
impl<'de> Deserialize<'de> for Viewer
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
impl Copy for Viewer
impl Eq for Viewer
impl StructuralPartialEq for Viewer
Auto Trait Implementations§
impl Freeze for Viewer
impl RefUnwindSafe for Viewer
impl Send for Viewer
impl Sync for Viewer
impl Unpin for Viewer
impl UnwindSafe for Viewer
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.