pub struct ParsedDocument<T> { /* private fields */ }Expand description
Wraps section and property values after parsing Records their preceding documentation content and line numbers
Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for ParsedDocument<T>
impl<T: Clone> Clone for ParsedDocument<T>
Source§fn clone(&self) -> ParsedDocument<T>
fn clone(&self) -> ParsedDocument<T>
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<T> Deref for ParsedDocument<T>
impl<T> Deref for ParsedDocument<T>
Source§impl<T: Display> Display for ParsedDocument<T>
impl<T: Display> Display for ParsedDocument<T>
Source§impl<T> From<ParsedDocument<T>> for EditableDocument<T>
impl<T> From<ParsedDocument<T>> for EditableDocument<T>
Source§fn from(parsed: ParsedDocument<T>) -> Self
fn from(parsed: ParsedDocument<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for ParsedDocument<T>where
T: Freeze,
impl<T> RefUnwindSafe for ParsedDocument<T>where
T: RefUnwindSafe,
impl<T> Send for ParsedDocument<T>where
T: Send,
impl<T> Sync for ParsedDocument<T>where
T: Sync,
impl<T> Unpin for ParsedDocument<T>where
T: Unpin,
impl<T> UnwindSafe for ParsedDocument<T>where
T: UnwindSafe,
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