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