Struct H264 Level Limits
Source pub struct H264LevelLimits {
pub name: &'static GStr,
pub level_idc: u8,
pub max_mbps: u32,
pub max_fs: u32,
pub max_dpb_mbs: u32,
pub max_br: u32,
pub max_cpb: u32,
pub min_cr: u32,
}Fields§
§name: &'static GStr§level_idc: u8§max_mbps: u32§max_fs: u32§max_dpb_mbs: u32§max_br: u32§max_cpb: u32§min_cr: u32Trait Implementations§
Source§impl Clone for H264LevelLimits
impl Clone for H264LevelLimits
Source§fn clone(&self) -> H264LevelLimits
fn clone(&self) -> H264LevelLimits
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 moreSource§impl Debug for H264LevelLimits
impl Debug for H264LevelLimits
impl Eq for H264LevelLimits
Source§impl PartialEq for H264LevelLimits
impl PartialEq for H264LevelLimits
impl StructuralPartialEq for H264LevelLimits
Auto Trait Implementations§
impl Freeze for H264LevelLimits
impl RefUnwindSafe for H264LevelLimits
impl Send for H264LevelLimits
impl Sync for H264LevelLimits
impl Unpin for H264LevelLimits
impl UnsafeUnpin for H264LevelLimits
impl UnwindSafe for H264LevelLimits
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