pub enum ColorRange {
Limited,
Full,
}Expand description
Color range (signal levels).
Variants§
Implementations§
Source§impl ColorRange
impl ColorRange
Sourcepub fn as_ffmpeg_arg(&self) -> &str
pub fn as_ffmpeg_arg(&self) -> &str
Convert to FFmpeg color range string.
Sourcepub fn from_ffmpeg(s: &str) -> Option<Self>
pub fn from_ffmpeg(s: &str) -> Option<Self>
Parse from FFmpeg color range string.
Trait Implementations§
Source§impl Clone for ColorRange
impl Clone for ColorRange
Source§fn clone(&self) -> ColorRange
fn clone(&self) -> ColorRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ColorRange
Source§impl Debug for ColorRange
impl Debug for ColorRange
Source§impl<'de> Deserialize<'de> for ColorRange
impl<'de> Deserialize<'de> for ColorRange
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
impl Eq for ColorRange
Source§impl Hash for ColorRange
impl Hash for ColorRange
Source§impl PartialEq for ColorRange
impl PartialEq for ColorRange
Source§impl Serialize for ColorRange
impl Serialize for ColorRange
impl StructuralPartialEq for ColorRange
Auto Trait Implementations§
impl Freeze for ColorRange
impl RefUnwindSafe for ColorRange
impl Send for ColorRange
impl Sync for ColorRange
impl Unpin for ColorRange
impl UnsafeUnpin for ColorRange
impl UnwindSafe for ColorRange
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