pub struct VerseLocation {
pub chapters: Vec<u8>,
pub verses: Option<Vec<u8>>,
}Expand description
Verse location representation
Fields§
§chapters: Vec<u8>Chapters
verses: Option<Vec<u8>>Verses
Trait Implementations§
Source§impl Clone for VerseLocation
impl Clone for VerseLocation
Source§fn clone(&self) -> VerseLocation
fn clone(&self) -> VerseLocation
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 VerseLocation
impl Debug for VerseLocation
Source§impl Hash for VerseLocation
impl Hash for VerseLocation
Source§impl PartialEq for VerseLocation
impl PartialEq for VerseLocation
impl Eq for VerseLocation
impl StructuralPartialEq for VerseLocation
Auto Trait Implementations§
impl Freeze for VerseLocation
impl RefUnwindSafe for VerseLocation
impl Send for VerseLocation
impl Sync for VerseLocation
impl Unpin for VerseLocation
impl UnwindSafe for VerseLocation
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