[−][src]Struct ffmpeg_dev::sys::AVOptionRange
A single allowed range of values, or a single allowed value.
Fields
str: *const c_char
value_min: f64
Value range. For string ranges this represents the min/max length. For dimensions this represents the min/max pixel count or width/height in multi-component case.
value_max: f64
Value range. For string ranges this represents the min/max length. For dimensions this represents the min/max pixel count or width/height in multi-component case.
component_min: f64
Value's component range. For string this represents the unicode range for chars, 0-127 limits to ASCII.
component_max: f64
Value's component range. For string this represents the unicode range for chars, 0-127 limits to ASCII.
is_range: c_int
Range flag. If set to 1 the struct encodes a range, if set to 0 a single value.
Trait Implementations
impl Clone for AVOptionRange
[src]
fn clone(&self) -> AVOptionRange
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for AVOptionRange
[src]
impl Debug for AVOptionRange
[src]
Auto Trait Implementations
impl RefUnwindSafe for AVOptionRange
impl !Send for AVOptionRange
impl !Sync for AVOptionRange
impl Unpin for AVOptionRange
impl UnwindSafe for AVOptionRange
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,