pub struct Lines {
pub break_optional: Option<String>,
pub part: Option<String>,
pub repeat: Option<u32>,
pub contents: Vec<VerseContent>,
}Fields§
§break_optional: Option<String>§part: Option<String>§repeat: Option<u32>§contents: Vec<VerseContent>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Lines
impl<'de> Deserialize<'de> for Lines
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 Eq for Lines
impl StructuralPartialEq for Lines
Auto Trait Implementations§
impl Freeze for Lines
impl RefUnwindSafe for Lines
impl Send for Lines
impl Sync for Lines
impl Unpin for Lines
impl UnwindSafe for Lines
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