pub enum RsLookupQuery {
Book(RsLookupBook),
Media(RsLookupMedia),
Episode(RsLookupEpisode),
Movie(RsLookupMovie),
Person(RsLookupPerson),
Serie(RsLookupSerie),
SerieSeason(RsLookupSerieSeason),
Song(RsLookupSong),
}
Variants§
Book(RsLookupBook)
Media(RsLookupMedia)
Episode(RsLookupEpisode)
Movie(RsLookupMovie)
Person(RsLookupPerson)
Serie(RsLookupSerie)
SerieSeason(RsLookupSerieSeason)
Song(RsLookupSong)
Trait Implementations§
Source§impl Clone for RsLookupQuery
impl Clone for RsLookupQuery
Source§fn clone(&self) -> RsLookupQuery
fn clone(&self) -> RsLookupQuery
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 RsLookupQuery
impl Debug for RsLookupQuery
Source§impl<'de> Deserialize<'de> for RsLookupQuery
impl<'de> Deserialize<'de> for RsLookupQuery
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 Display for RsLookupQuery
impl Display for RsLookupQuery
Source§impl FromStr for RsLookupQuery
impl FromStr for RsLookupQuery
Source§impl PartialEq for RsLookupQuery
impl PartialEq for RsLookupQuery
Source§impl Serialize for RsLookupQuery
impl Serialize for RsLookupQuery
Source§impl TryFrom<&str> for RsLookupQuery
impl TryFrom<&str> for RsLookupQuery
impl StructuralPartialEq for RsLookupQuery
Auto Trait Implementations§
impl Freeze for RsLookupQuery
impl RefUnwindSafe for RsLookupQuery
impl Send for RsLookupQuery
impl Sync for RsLookupQuery
impl Unpin for RsLookupQuery
impl UnwindSafe for RsLookupQuery
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