pub enum VideoPacketMpeg2TsSequenceStart {
Av1(AV1VideoDescriptor),
Other(Bytes),
}
Expand description
MPEG2-TS sequence start video packet
Variants§
Trait Implementations§
Source§impl Clone for VideoPacketMpeg2TsSequenceStart
impl Clone for VideoPacketMpeg2TsSequenceStart
Source§fn clone(&self) -> VideoPacketMpeg2TsSequenceStart
fn clone(&self) -> VideoPacketMpeg2TsSequenceStart
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 PartialEq for VideoPacketMpeg2TsSequenceStart
impl PartialEq for VideoPacketMpeg2TsSequenceStart
Source§fn eq(&self, other: &VideoPacketMpeg2TsSequenceStart) -> bool
fn eq(&self, other: &VideoPacketMpeg2TsSequenceStart) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VideoPacketMpeg2TsSequenceStart
Auto Trait Implementations§
impl !Freeze for VideoPacketMpeg2TsSequenceStart
impl RefUnwindSafe for VideoPacketMpeg2TsSequenceStart
impl Send for VideoPacketMpeg2TsSequenceStart
impl Sync for VideoPacketMpeg2TsSequenceStart
impl Unpin for VideoPacketMpeg2TsSequenceStart
impl UnwindSafe for VideoPacketMpeg2TsSequenceStart
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