pub enum OggPacketType {
Continuation = 0,
BeginOfStream = 2,
EndOfStream = 4,
}
Variants§
Continuation = 0
- The middle packets
BeginOfStream = 2
- The begin of a stream
EndOfStream = 4
- The last packet of a stream
Trait Implementations§
Source§impl Clone for OggPacketType
impl Clone for OggPacketType
Source§fn clone(&self) -> OggPacketType
fn clone(&self) -> OggPacketType
Returns a duplicate 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 OggPacketType
impl Debug for OggPacketType
Source§impl PartialEq for OggPacketType
impl PartialEq for OggPacketType
impl Copy for OggPacketType
impl StructuralPartialEq for OggPacketType
Auto Trait Implementations§
impl Freeze for OggPacketType
impl RefUnwindSafe for OggPacketType
impl Send for OggPacketType
impl Sync for OggPacketType
impl Unpin for OggPacketType
impl UnwindSafe for OggPacketType
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