pub enum HevcPacket {
SequenceStart(HEVCDecoderConfigurationRecord),
Nalu {
composition_time: Option<i32>,
data: Bytes,
},
}Expand description
HEVC Packet
Variants§
Trait Implementations§
Source§impl Clone for HevcPacket
impl Clone for HevcPacket
Source§fn clone(&self) -> HevcPacket
fn clone(&self) -> HevcPacket
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 HevcPacket
impl Debug for HevcPacket
Source§impl PartialEq for HevcPacket
impl PartialEq for HevcPacket
impl StructuralPartialEq for HevcPacket
Auto Trait Implementations§
impl !Freeze for HevcPacket
impl RefUnwindSafe for HevcPacket
impl Send for HevcPacket
impl Sync for HevcPacket
impl Unpin for HevcPacket
impl UnwindSafe for HevcPacket
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