pub struct Line<'a> {
pub level: u8,
pub xref: &'a str,
pub tag: &'a str,
pub value: &'a str,
}
Expand description
A GEDCOM line level + delim (space) + [optional_xref_ID] + tag + [optional_line_value] + terminator
Fields§
§level: u8
§xref: &'a str
§tag: &'a str
§value: &'a str
Implementations§
Trait Implementations§
impl<'a> Copy for Line<'a>
impl<'a> Eq for Line<'a>
impl<'a> StructuralPartialEq for Line<'a>
Auto Trait Implementations§
impl<'a> Freeze for Line<'a>
impl<'a> RefUnwindSafe for Line<'a>
impl<'a> Send for Line<'a>
impl<'a> Sync for Line<'a>
impl<'a> Unpin for Line<'a>
impl<'a> UnwindSafe for Line<'a>
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