pub struct TrackSection {
pub name: String,
pub start: String,
pub end: String,
pub distance: u32,
}Expand description
Track section field
Describes a section of track between two timelines.
Fields§
§name: StringSection name
start: StringTimeline number at section start
end: StringTimeline number at section end
distance: u32Sector distance, given in whole inches
Trait Implementations§
Source§impl Clone for TrackSection
impl Clone for TrackSection
Source§fn clone(&self) -> TrackSection
fn clone(&self) -> TrackSection
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for TrackSection
impl RefUnwindSafe for TrackSection
impl Send for TrackSection
impl Sync for TrackSection
impl Unpin for TrackSection
impl UnwindSafe for TrackSection
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