#[repr(transparent)]pub struct CommandPacket(pub u8);Expand description
FLV Command Packet Defined by:
- video_file_format_spec_v10.pdf (Chapter 1 - The FLV File Format - Video tags)
- video_file_format_spec_v10_1.pdf (Annex E.4.3.1 - VIDEODATA)
Tuple Fields§
§0: u8Implementations§
Source§impl CommandPacket
impl CommandPacket
Sourcepub const StartOfClientSeeking: Self
pub const StartOfClientSeeking: Self
Start of client seeking, when FrameType is 5
Sourcepub const EndOfClientSeeking: Self
pub const EndOfClientSeeking: Self
End of client seeking, when FrameType is 5
Trait Implementations§
Source§impl Clone for CommandPacket
impl Clone for CommandPacket
Source§fn clone(&self) -> CommandPacket
fn clone(&self) -> CommandPacket
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 CommandPacket
impl Debug for CommandPacket
Source§impl From<CommandPacket> for u8
impl From<CommandPacket> for u8
Source§fn from(value: CommandPacket) -> Self
fn from(value: CommandPacket) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CommandPacket
impl From<u8> for CommandPacket
Source§impl Hash for CommandPacket
impl Hash for CommandPacket
Source§impl Ord for CommandPacket
impl Ord for CommandPacket
Source§fn cmp(&self, other: &CommandPacket) -> Ordering
fn cmp(&self, other: &CommandPacket) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CommandPacket
impl PartialEq for CommandPacket
Source§impl PartialOrd for CommandPacket
impl PartialOrd for CommandPacket
impl Copy for CommandPacket
impl Eq for CommandPacket
impl StructuralPartialEq for CommandPacket
Auto Trait Implementations§
impl Freeze for CommandPacket
impl RefUnwindSafe for CommandPacket
impl Send for CommandPacket
impl Sync for CommandPacket
impl Unpin for CommandPacket
impl UnwindSafe for CommandPacket
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