pub struct DeleteNoteCmd {
pub note_id: String,
pub part_index: usize,
pub staff_index: usize,
pub measure_index: usize,
pub voice: usize,
}Fields§
§note_id: String§part_index: usize§staff_index: usize§measure_index: usize§voice: usizeTrait Implementations§
Source§impl Clone for DeleteNoteCmd
impl Clone for DeleteNoteCmd
Source§fn clone(&self) -> DeleteNoteCmd
fn clone(&self) -> DeleteNoteCmd
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 DeleteNoteCmd
impl Debug for DeleteNoteCmd
Source§impl<'de> Deserialize<'de> for DeleteNoteCmd
impl<'de> Deserialize<'de> for DeleteNoteCmd
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 DeleteNoteCmd
impl RefUnwindSafe for DeleteNoteCmd
impl Send for DeleteNoteCmd
impl Sync for DeleteNoteCmd
impl Unpin for DeleteNoteCmd
impl UnsafeUnpin for DeleteNoteCmd
impl UnwindSafe for DeleteNoteCmd
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