#[repr(i32)]pub enum ElementCategory {
Show 26 variants
AnimeSeason = 0,
AnimeSeasonPrefix = 1,
AnimeTitle = 2,
AnimeType = 3,
AnimeYear = 4,
AudioTerm = 5,
DeviceCompatibility = 6,
EpisodeNumber = 7,
EpisodeNumberAlt = 8,
EpisodePrefix = 9,
EpisodeTitle = 10,
FileChecksum = 11,
FileExtension = 12,
FileName = 13,
Language = 14,
Other = 15,
ReleaseGroup = 16,
ReleaseInformation = 17,
ReleaseVersion = 18,
Source = 19,
Subtitles = 20,
VideoResolution = 21,
VideoTerm = 22,
VolumeNumber = 23,
VolumePrefix = 24,
Unknown = 25,
}Expand description
The category of an Element.
Variants§
AnimeSeason = 0
AnimeSeasonPrefix = 1
AnimeTitle = 2
AnimeType = 3
AnimeYear = 4
AudioTerm = 5
DeviceCompatibility = 6
EpisodeNumber = 7
EpisodeNumberAlt = 8
EpisodePrefix = 9
EpisodeTitle = 10
FileChecksum = 11
FileExtension = 12
FileName = 13
Language = 14
Other = 15
ReleaseGroup = 16
ReleaseInformation = 17
ReleaseVersion = 18
Source = 19
Subtitles = 20
VideoResolution = 21
VideoTerm = 22
VolumeNumber = 23
VolumePrefix = 24
Unknown = 25
Trait Implementations§
Source§impl Clone for ElementCategory
impl Clone for ElementCategory
Source§fn clone(&self) -> ElementCategory
fn clone(&self) -> ElementCategory
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 ElementCategory
impl Debug for ElementCategory
Source§impl From<i32> for ElementCategory
impl From<i32> for ElementCategory
Source§fn from(val: element_category_t) -> ElementCategory
fn from(val: element_category_t) -> ElementCategory
Converts to this type from the input type.
Source§impl Hash for ElementCategory
impl Hash for ElementCategory
Source§impl PartialEq for ElementCategory
impl PartialEq for ElementCategory
impl Copy for ElementCategory
impl Eq for ElementCategory
impl StructuralPartialEq for ElementCategory
Auto Trait Implementations§
impl Freeze for ElementCategory
impl RefUnwindSafe for ElementCategory
impl Send for ElementCategory
impl Sync for ElementCategory
impl Unpin for ElementCategory
impl UnwindSafe for ElementCategory
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