pub struct Lyric {
pub text: String,
pub syllabic: String,
}Expand description
Lyric syllable attached to a note.
Fields§
§text: StringThe syllable text.
syllabic: StringSyllabic position: “single” | “begin” | “middle” | “end”
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Lyric
impl<'de> Deserialize<'de> for Lyric
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
impl StructuralPartialEq for Lyric
Auto Trait Implementations§
impl Freeze for Lyric
impl RefUnwindSafe for Lyric
impl Send for Lyric
impl Sync for Lyric
impl Unpin for Lyric
impl UnsafeUnpin for Lyric
impl UnwindSafe for Lyric
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