#[repr(u32)]pub enum SwsIntent {
SWS_INTENT_PERCEPTUAL = 0,
SWS_INTENT_RELATIVE_COLORIMETRIC = 1,
SWS_INTENT_SATURATION = 2,
SWS_INTENT_ABSOLUTE_COLORIMETRIC = 3,
SWS_INTENT_NB = 4,
}Variants§
SWS_INTENT_PERCEPTUAL = 0
< Perceptual tone mapping
SWS_INTENT_RELATIVE_COLORIMETRIC = 1
< Relative colorimetric clipping
SWS_INTENT_SATURATION = 2
< Saturation mapping
SWS_INTENT_ABSOLUTE_COLORIMETRIC = 3
< Absolute colorimetric clipping
SWS_INTENT_NB = 4
< not part of the ABI
Trait Implementations§
impl Copy for SwsIntent
impl Eq for SwsIntent
impl StructuralPartialEq for SwsIntent
Auto Trait Implementations§
impl Freeze for SwsIntent
impl RefUnwindSafe for SwsIntent
impl Send for SwsIntent
impl Sync for SwsIntent
impl Unpin for SwsIntent
impl UnsafeUnpin for SwsIntent
impl UnwindSafe for SwsIntent
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