pub struct V3Track {
pub parts: Vec<V3Part>,
}Fields§
§parts: Vec<V3Part>Trait Implementations§
impl Eq for V3Track
impl StructuralPartialEq for V3Track
Source§impl Track for V3Track
impl Track for V3Track
type Part = V3Part
type Metadata = ()
type TrackInfo = ()
fn meta(&self) -> Self::Metadata
fn parts(&self) -> Vec<Self::Part>
fn decode_meta(_: &[u8], _: &mut usize) -> Option<Self::Metadata>
fn encode_meta(&self, _: &mut Vec<u8>)
fn from_data(_: Self::Metadata, parts: Vec<Self::Part>) -> Self
fn decode_track_code( track_code: &str, ) -> Option<(String, Self::TrackInfo, Vec<u8>)>
fn encode_track_code( name: String, _: Self::TrackInfo, track_data: &[u8], ) -> Option<String>
Auto Trait Implementations§
impl Freeze for V3Track
impl RefUnwindSafe for V3Track
impl Send for V3Track
impl Sync for V3Track
impl Unpin for V3Track
impl UnsafeUnpin for V3Track
impl UnwindSafe for V3Track
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.