pub struct TrackAssignment {
pub track: u32,
pub total: u32,
}Expand description
A clip’s assigned position within its album: 1-based track of total.
Fields§
§track: u32§total: u32Trait Implementations§
Source§impl Clone for TrackAssignment
impl Clone for TrackAssignment
Source§fn clone(&self) -> TrackAssignment
fn clone(&self) -> TrackAssignment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TrackAssignment
Source§impl Debug for TrackAssignment
impl Debug for TrackAssignment
impl Eq for TrackAssignment
Source§impl PartialEq for TrackAssignment
impl PartialEq for TrackAssignment
Source§fn eq(&self, other: &TrackAssignment) -> bool
fn eq(&self, other: &TrackAssignment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrackAssignment
Auto Trait Implementations§
impl Freeze for TrackAssignment
impl RefUnwindSafe for TrackAssignment
impl Send for TrackAssignment
impl Sync for TrackAssignment
impl Unpin for TrackAssignment
impl UnsafeUnpin for TrackAssignment
impl UnwindSafe for TrackAssignment
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