pub struct FullInfoCuePoint {Show 13 fields
pub data_chunk_id: [u8; 4],
pub label: String,
pub note: String,
pub sample_length: u32,
pub purpose_id: String,
pub country: String,
pub language: String,
pub text_data: String,
pub media_type: u32,
pub file_data: Vec<u8>,
pub start_sample: u32,
pub num_samples: u32,
pub repeats: u32,
}
Expand description
- The fully assembled cue point data from various of chunks in the WAV file.
Fields§
§data_chunk_id: [u8; 4]
§label: String
- The label of the cue point
note: String
- The notes for the cue point
sample_length: u32
- How many samples in the cue point
purpose_id: String
- What is the purpose of the cue point
country: String
- Country name
language: String
- Language name
text_data: String
- Some text data
media_type: u32
- The media type
file_data: Vec<u8>
- The file data
start_sample: u32
- Start sample
num_samples: u32
- Num samples
repeats: u32
- repeats for playback
Implementations§
Trait Implementations§
Source§impl Clone for FullInfoCuePoint
impl Clone for FullInfoCuePoint
Source§fn clone(&self) -> FullInfoCuePoint
fn clone(&self) -> FullInfoCuePoint
Returns a copy 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 FullInfoCuePoint
impl Debug for FullInfoCuePoint
Source§impl Default for FullInfoCuePoint
impl Default for FullInfoCuePoint
Source§fn default() -> FullInfoCuePoint
fn default() -> FullInfoCuePoint
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FullInfoCuePoint
impl RefUnwindSafe for FullInfoCuePoint
impl Send for FullInfoCuePoint
impl Sync for FullInfoCuePoint
impl Unpin for FullInfoCuePoint
impl UnwindSafe for FullInfoCuePoint
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