pub enum TransferCharacteristics {
Show 17 variants
Bt709 = 1,
Unspecified = 2,
Bt470M = 4,
Bt470Bg = 5,
Smpte170M = 6,
Smpte240M = 7,
Linear = 8,
Log100 = 9,
Log316 = 10,
Iec619662_4 = 11,
Bt1361 = 12,
Srgb = 13,
Bt202010 = 14,
Bt202012 = 15,
Smpte2084 = 16,
Smpte428 = 17,
AribStdB67 = 18,
}Expand description
Transfer characteristics (ITU-T H.273).
Variants§
Bt709 = 1
BT.709.
Unspecified = 2
Unspecified.
Bt470M = 4
BT.470M.
Bt470Bg = 5
BT.470BG.
Smpte170M = 6
SMPTE 170M.
Smpte240M = 7
SMPTE 240M.
Linear = 8
Linear.
Log100 = 9
Logarithmic 100:1.
Log316 = 10
Logarithmic 100*sqrt(10):1.
Iec619662_4 = 11
IEC 61966-2-4.
Bt1361 = 12
BT.1361.
Srgb = 13
sRGB/sYCC.
Bt202010 = 14
BT.2020 10-bit.
Bt202012 = 15
BT.2020 12-bit.
Smpte2084 = 16
SMPTE ST 2084 (PQ/HDR10).
Smpte428 = 17
SMPTE ST 428-1.
AribStdB67 = 18
ARIB STD-B67 (HLG).
Trait Implementations§
Source§impl Clone for TransferCharacteristics
impl Clone for TransferCharacteristics
Source§fn clone(&self) -> TransferCharacteristics
fn clone(&self) -> TransferCharacteristics
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 TransferCharacteristics
impl Debug for TransferCharacteristics
Source§impl Default for TransferCharacteristics
impl Default for TransferCharacteristics
Source§fn default() -> TransferCharacteristics
fn default() -> TransferCharacteristics
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransferCharacteristics
impl PartialEq for TransferCharacteristics
impl Copy for TransferCharacteristics
impl Eq for TransferCharacteristics
impl StructuralPartialEq for TransferCharacteristics
Auto Trait Implementations§
impl Freeze for TransferCharacteristics
impl RefUnwindSafe for TransferCharacteristics
impl Send for TransferCharacteristics
impl Sync for TransferCharacteristics
impl Unpin for TransferCharacteristics
impl UnsafeUnpin for TransferCharacteristics
impl UnwindSafe for TransferCharacteristics
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more