Enum h264_reader::push::NalInterest
source · pub enum NalInterest {
Buffer,
Ignore,
}Expand description
AccumulatedNalHandler’s interest in receiving additional callbacks on a NAL.
Variants§
Buffer
If this NAL is incomplete, buffer it and call again later. No effect if the NAL is complete.
Ignore
Don’t buffer any more of this NAL or make any more calls on it.
Trait Implementations§
source§impl Clone for NalInterest
impl Clone for NalInterest
source§fn clone(&self) -> NalInterest
fn clone(&self) -> NalInterest
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 NalInterest
impl Debug for NalInterest
source§impl PartialEq for NalInterest
impl PartialEq for NalInterest
source§fn eq(&self, other: &NalInterest) -> bool
fn eq(&self, other: &NalInterest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for NalInterest
impl Eq for NalInterest
impl StructuralPartialEq for NalInterest
Auto Trait Implementations§
impl Freeze for NalInterest
impl RefUnwindSafe for NalInterest
impl Send for NalInterest
impl Sync for NalInterest
impl Unpin for NalInterest
impl UnwindSafe for NalInterest
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