pub enum DeepLinkResult {
Manga {
key: String,
},
Chapter {
manga_key: String,
key: String,
},
Listing(Listing),
}Expand description
A result of a deep link handling.
Variants§
Trait Implementations§
Source§impl Clone for DeepLinkResult
impl Clone for DeepLinkResult
Source§fn clone(&self) -> DeepLinkResult
fn clone(&self) -> DeepLinkResult
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 DeepLinkResult
impl Debug for DeepLinkResult
Source§impl PartialEq for DeepLinkResult
impl PartialEq for DeepLinkResult
Source§impl Serialize for DeepLinkResult
impl Serialize for DeepLinkResult
impl StructuralPartialEq for DeepLinkResult
Auto Trait Implementations§
impl Freeze for DeepLinkResult
impl RefUnwindSafe for DeepLinkResult
impl Send for DeepLinkResult
impl Sync for DeepLinkResult
impl Unpin for DeepLinkResult
impl UnwindSafe for DeepLinkResult
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