pub struct Verse {
pub chapter: u32,
pub verse: u32,
pub translation: Option<String>,
/* private fields */
}Fields§
§chapter: u32§verse: u32§translation: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Verse
impl<'de> Deserialize<'de> for Verse
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 Verse
impl RefUnwindSafe for Verse
impl Send for Verse
impl Sync for Verse
impl Unpin for Verse
impl UnwindSafe for Verse
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