pub struct NoteExpressionText {
pub note_id: NoteId,
pub expression_type: u32,
pub text: [u8; 64],
pub text_len: u8,
}Expand description
Note Expression text event.
Used for text-based expression like phonemes for vocal synthesis.
Fields§
§note_id: NoteIdNote ID this expression applies to.
expression_type: u32Expression type (typically TEXT or PHONEME).
text: [u8; 64]UTF-8 text data.
text_len: u8Actual length of text.
Implementations§
Trait Implementations§
Source§impl Clone for NoteExpressionText
impl Clone for NoteExpressionText
Source§fn clone(&self) -> NoteExpressionText
fn clone(&self) -> NoteExpressionText
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 NoteExpressionText
impl Debug for NoteExpressionText
Source§impl PartialEq for NoteExpressionText
impl PartialEq for NoteExpressionText
impl Copy for NoteExpressionText
Auto Trait Implementations§
impl Freeze for NoteExpressionText
impl RefUnwindSafe for NoteExpressionText
impl Send for NoteExpressionText
impl Sync for NoteExpressionText
impl Unpin for NoteExpressionText
impl UnwindSafe for NoteExpressionText
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