pub enum MiscCommandType {
VideoFreezePicture,
VideoFastUpdatePicture,
VideoFastUpdateGob,
VideoFastUpdateMacroblock,
LostPicture,
LostPartialPicture,
RecoveryReferencePicture,
TemporalSpatialTradeoff,
Unknown(u32),
}Expand description
Codec-specific operation carried by a miscellaneous multimedia command.
Variants§
VideoFreezePicture
VideoFastUpdatePicture
VideoFastUpdateGob
VideoFastUpdateMacroblock
LostPicture
LostPartialPicture
RecoveryReferencePicture
TemporalSpatialTradeoff
Unknown(u32)
Implementations§
Trait Implementations§
Source§impl Clone for MiscCommandType
impl Clone for MiscCommandType
Source§fn clone(&self) -> MiscCommandType
fn clone(&self) -> MiscCommandType
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 MiscCommandType
Source§impl Debug for MiscCommandType
impl Debug for MiscCommandType
impl Eq for MiscCommandType
Source§impl From<MiscCommandType> for u32
impl From<MiscCommandType> for u32
Source§fn from(value: MiscCommandType) -> Self
fn from(value: MiscCommandType) -> Self
Converts to this type from the input type.
Source§impl From<u32> for MiscCommandType
impl From<u32> for MiscCommandType
Source§impl Hash for MiscCommandType
impl Hash for MiscCommandType
Source§impl PartialEq for MiscCommandType
impl PartialEq for MiscCommandType
impl StructuralPartialEq for MiscCommandType
Auto Trait Implementations§
impl Freeze for MiscCommandType
impl RefUnwindSafe for MiscCommandType
impl Send for MiscCommandType
impl Sync for MiscCommandType
impl Unpin for MiscCommandType
impl UnsafeUnpin for MiscCommandType
impl UnwindSafe for MiscCommandType
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