pub struct SetTechniqueTextCmd {
pub part_index: usize,
pub staff_index: usize,
pub measure_index: usize,
pub voice: usize,
pub note_index: usize,
pub text: Option<String>,
}Expand description
Set (or clear) the technique-text annotation on a note (“pizz.”, “arco”, “con sord.”, etc.).
Fields§
§part_index: usize§staff_index: usize§measure_index: usize§voice: usize§note_index: usize§text: Option<String>None clears the annotation.
Trait Implementations§
Source§impl Clone for SetTechniqueTextCmd
impl Clone for SetTechniqueTextCmd
Source§fn clone(&self) -> SetTechniqueTextCmd
fn clone(&self) -> SetTechniqueTextCmd
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 moreSource§impl Debug for SetTechniqueTextCmd
impl Debug for SetTechniqueTextCmd
Source§impl<'de> Deserialize<'de> for SetTechniqueTextCmd
impl<'de> Deserialize<'de> for SetTechniqueTextCmd
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 SetTechniqueTextCmd
impl RefUnwindSafe for SetTechniqueTextCmd
impl Send for SetTechniqueTextCmd
impl Sync for SetTechniqueTextCmd
impl Unpin for SetTechniqueTextCmd
impl UnsafeUnpin for SetTechniqueTextCmd
impl UnwindSafe for SetTechniqueTextCmd
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