pub enum EditValue {
Document(EureDocument),
Source(SourceDocument),
}Variants§
Document(EureDocument)
Source(SourceDocument)
Trait Implementations§
Source§impl From<EureDocument> for EditValue
impl From<EureDocument> for EditValue
Source§fn from(value: EureDocument) -> Self
fn from(value: EureDocument) -> Self
Converts to this type from the input type.
Source§impl From<SourceDocument> for EditValue
impl From<SourceDocument> for EditValue
Source§fn from(value: SourceDocument) -> Self
fn from(value: SourceDocument) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EditValue
impl RefUnwindSafe for EditValue
impl Send for EditValue
impl Sync for EditValue
impl Unpin for EditValue
impl UnsafeUnpin for EditValue
impl UnwindSafe for EditValue
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