pub enum ExistingDocumentEngine {
PreserveBase,
Reconstruct,
}Expand description
Engine selected for an existing-document operation.
Variants§
PreserveBase
Preserve the first input as an exact byte prefix and mutate incrementally.
Reconstruct
Rebuild page appearance/content and explicitly discard catalog semantics.
Trait Implementations§
Source§impl Clone for ExistingDocumentEngine
impl Clone for ExistingDocumentEngine
Source§fn clone(&self) -> ExistingDocumentEngine
fn clone(&self) -> ExistingDocumentEngine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExistingDocumentEngine
Source§impl Debug for ExistingDocumentEngine
impl Debug for ExistingDocumentEngine
impl Eq for ExistingDocumentEngine
Source§impl PartialEq for ExistingDocumentEngine
impl PartialEq for ExistingDocumentEngine
impl StructuralPartialEq for ExistingDocumentEngine
Auto Trait Implementations§
impl Freeze for ExistingDocumentEngine
impl RefUnwindSafe for ExistingDocumentEngine
impl Send for ExistingDocumentEngine
impl Sync for ExistingDocumentEngine
impl Unpin for ExistingDocumentEngine
impl UnsafeUnpin for ExistingDocumentEngine
impl UnwindSafe for ExistingDocumentEngine
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