#[repr(i32)]pub enum Quality {
Show 22 variants
Unknown = 0,
Sdtv = 1,
Dvd = 2,
Webdl1080p = 3,
Hdtv720p = 4,
Webdl720p = 5,
Bluray720p = 6,
Bluray1080p = 7,
Webdl480p = 8,
Hdtv1080p = 9,
RawHd = 10,
Webrip480p = 12,
Bluray480p = 13,
Webrip720p = 14,
Webrip1080p = 15,
Hdtv2160p = 16,
Webrip2160p = 17,
Webdl2160p = 18,
Bluray2160p = 19,
Bluray1080pRemux = 20,
Bluray2160pRemux = 21,
Bluray576p = 22,
}Expand description
Quality identity: a stable integer ID per release class.
IDs match Sonarr’s Quality.cs static initializers verbatim. ID 11 is
intentionally skipped. It was reserved for HDTV-480p, which Sonarr
commented out and never shipped. Bluray576p lands at ID 22 because it was
added after the 2160p suite.
Variants§
Unknown = 0
Sdtv = 1
Dvd = 2
Webdl1080p = 3
Hdtv720p = 4
Webdl720p = 5
Bluray720p = 6
Bluray1080p = 7
Webdl480p = 8
Hdtv1080p = 9
RawHd = 10
Webrip480p = 12
Bluray480p = 13
Webrip720p = 14
Webrip1080p = 15
Hdtv2160p = 16
Webrip2160p = 17
Webdl2160p = 18
Bluray2160p = 19
Bluray1080pRemux = 20
Bluray2160pRemux = 21
Bluray576p = 22
Trait Implementations§
impl Copy for Quality
impl Eq for Quality
impl StructuralPartialEq for Quality
Auto Trait Implementations§
impl Freeze for Quality
impl RefUnwindSafe for Quality
impl Send for Quality
impl Sync for Quality
impl Unpin for Quality
impl UnsafeUnpin for Quality
impl UnwindSafe for Quality
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