pub struct TrackChunk {
pub track_name: String,
pub bounding_box: BoundingBox,
pub start_finish: StartFinish,
pub combo: bool,
}Expand description
All the data for a single track.
Fields§
§track_name: StringThe name of the track.
bounding_box: BoundingBoxThe bounding box of the track.
start_finish: StartFinishThe start and finish of the track.
combo: boolWhether the track is a combo track (Not sure exactly what this is but there is a flag set for every track that has “combo” in the name.)
Trait Implementations§
Source§impl Debug for TrackChunk
impl Debug for TrackChunk
Source§impl<'de> Deserialize<'de> for TrackChunk
impl<'de> Deserialize<'de> for TrackChunk
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TrackChunk
impl RefUnwindSafe for TrackChunk
impl Send for TrackChunk
impl Sync for TrackChunk
impl Unpin for TrackChunk
impl UnwindSafe for TrackChunk
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