pub enum OggVorbisPacket {
Identification(OggVorbiseHeaderIdentificationParseResult),
Comment(OggVorbiseHeaderCommentParseResult),
Setup(OggVorbiseHeaderSetupParseResult),
Body(OggVorbisPacketsParseResult),
}Expand description
Enum representing different types of Ogg Vorbis packets.
Variants§
Identification(OggVorbiseHeaderIdentificationParseResult)
Identification packet.
Comment(OggVorbiseHeaderCommentParseResult)
Comment packet.
Setup(OggVorbiseHeaderSetupParseResult)
Setup packet.
Body(OggVorbisPacketsParseResult)
Body packet.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OggVorbisPacket
impl RefUnwindSafe for OggVorbisPacket
impl Send for OggVorbisPacket
impl Sync for OggVorbisPacket
impl Unpin for OggVorbisPacket
impl UnwindSafe for OggVorbisPacket
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