pub struct OggVorbisPageResult {
pub page: OggVorbisPage,
pub packets: Vec<OggVorbisPacket>,
}Expand description
Represents the result of parsing an Ogg Vorbis page, containing the page and its associated packets.
Fields§
§page: OggVorbisPageThe parsed Ogg Vorbis page.
packets: Vec<OggVorbisPacket>The packets contained within the page.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OggVorbisPageResult
impl RefUnwindSafe for OggVorbisPageResult
impl Send for OggVorbisPageResult
impl Sync for OggVorbisPageResult
impl Unpin for OggVorbisPageResult
impl UnwindSafe for OggVorbisPageResult
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