pub struct SectionLenChangeObj {
pub track: Track,
pub length: f64,
}
Expand description
An object to change its section length of the score.
Fields§
§track: Track
The target track to change.
length: f64
The length to be.
Trait Implementations§
Source§impl Clone for SectionLenChangeObj
impl Clone for SectionLenChangeObj
Source§fn clone(&self) -> SectionLenChangeObj
fn clone(&self) -> SectionLenChangeObj
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 moreSource§impl Debug for SectionLenChangeObj
impl Debug for SectionLenChangeObj
Source§impl<'de> Deserialize<'de> for SectionLenChangeObj
impl<'de> Deserialize<'de> for SectionLenChangeObj
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
Source§impl Ord for SectionLenChangeObj
impl Ord for SectionLenChangeObj
Source§impl PartialEq for SectionLenChangeObj
impl PartialEq for SectionLenChangeObj
Source§impl PartialOrd for SectionLenChangeObj
impl PartialOrd for SectionLenChangeObj
Source§impl Serialize for SectionLenChangeObj
impl Serialize for SectionLenChangeObj
impl Copy for SectionLenChangeObj
impl Eq for SectionLenChangeObj
Auto Trait Implementations§
impl Freeze for SectionLenChangeObj
impl RefUnwindSafe for SectionLenChangeObj
impl Send for SectionLenChangeObj
impl Sync for SectionLenChangeObj
impl Unpin for SectionLenChangeObj
impl UnwindSafe for SectionLenChangeObj
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more