pub struct VerseLyric {
pub verse: u8,
pub lyric: Lyric,
}Expand description
A lyric syllable for verse 2 or later. Verse 1 stays in Note.lyric.
Fields§
§verse: u8Verse number, from 2 to VerseLyric::MAX_VERSE.
lyric: LyricImplementations§
Trait Implementations§
Source§impl Clone for VerseLyric
impl Clone for VerseLyric
Source§impl Debug for VerseLyric
impl Debug for VerseLyric
Source§impl<'de> Deserialize<'de> for VerseLyric
impl<'de> Deserialize<'de> for VerseLyric
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 PartialEq for VerseLyric
impl PartialEq for VerseLyric
Source§impl Serialize for VerseLyric
impl Serialize for VerseLyric
impl StructuralPartialEq for VerseLyric
Auto Trait Implementations§
impl Freeze for VerseLyric
impl RefUnwindSafe for VerseLyric
impl Send for VerseLyric
impl Sync for VerseLyric
impl Unpin for VerseLyric
impl UnsafeUnpin for VerseLyric
impl UnwindSafe for VerseLyric
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