pub struct Index<O> {
pub offset: O,
pub number: u8,
}Expand description
An individual CUESHEET track index point
| Bits | Field | Meaning |
|---|---|---|
| 64 | offset | index point offset, in samples |
| 8 | number | index point number |
| 3×8 | padding | all 0 bits |
Fields§
§offset: OOffset in samples from beginning of track
number: u8Track index point number
Trait Implementations§
Source§impl FromBitStream for Index<CDDAOffset>
impl FromBitStream for Index<CDDAOffset>
Source§impl FromBitStream for Index<u64>
impl FromBitStream for Index<u64>
Source§impl ToBitStream for Index<CDDAOffset>
impl ToBitStream for Index<CDDAOffset>
Source§impl ToBitStream for Index<u64>
impl ToBitStream for Index<u64>
impl<O: Copy> Copy for Index<O>
impl<O: Eq> Eq for Index<O>
impl<O> StructuralPartialEq for Index<O>
Auto Trait Implementations§
impl<O> Freeze for Index<O>where
O: Freeze,
impl<O> RefUnwindSafe for Index<O>where
O: RefUnwindSafe,
impl<O> Send for Index<O>where
O: Send,
impl<O> Sync for Index<O>where
O: Sync,
impl<O> Unpin for Index<O>where
O: Unpin,
impl<O> UnwindSafe for Index<O>where
O: UnwindSafe,
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