pub enum PictureType {
None = 0,
I = 1,
P = 2,
B = 3,
S = 4,
Si = 5,
Sp = 6,
Bi = 7,
}
Variants§
None = 0
I = 1
Intra.
P = 2
Predicted.
B = 3
Bi-dir predicted.
S = 4
S(GMC)-VOP MPEG4.
Si = 5
Switching Intra.
Sp = 6
Switching Predicted.
Bi = 7
BI type.
Trait Implementations§
Source§impl Clone for PictureType
impl Clone for PictureType
Source§fn clone(&self) -> PictureType
fn clone(&self) -> PictureType
Returns a copy of the value. Read more
1.0.0 · 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 PictureType
impl Debug for PictureType
Source§impl Hash for PictureType
impl Hash for PictureType
Source§impl PartialEq for PictureType
impl PartialEq for PictureType
impl Copy for PictureType
impl Eq for PictureType
impl StructuralPartialEq for PictureType
Auto Trait Implementations§
impl Freeze for PictureType
impl RefUnwindSafe for PictureType
impl Send for PictureType
impl Sync for PictureType
impl Unpin for PictureType
impl UnwindSafe for PictureType
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