pub struct DemuxedPacket {
pub pid: PID,
pub offset: usize,
pub pts: Option<Duration>,
pub dts: Option<Duration>,
pub buf: Buf,
/* private fields */
}Fields§
§pid: PID§offset: usize§pts: Option<Duration>presentation time stamp
dts: Option<Duration>decode time stamp
buf: BufAuto Trait Implementations§
impl Freeze for Packet
impl RefUnwindSafe for Packet
impl Send for Packet
impl Sync for Packet
impl Unpin for Packet
impl UnwindSafe for Packet
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