pub struct Reconciled {
pub doc_id: String,
pub outcome: Outcome,
}Expand description
The return value of reconcile.
Fields§
§doc_id: StringThe effective doc-id that MUST be present in the .zen after reconcile
(newly minted for Minted/Copied; unchanged otherwise).
outcome: OutcomeWhat the reconciler determined about this document’s identity.
Trait Implementations§
Source§impl Clone for Reconciled
impl Clone for Reconciled
Source§fn clone(&self) -> Reconciled
fn clone(&self) -> Reconciled
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 moreSource§impl Debug for Reconciled
impl Debug for Reconciled
Source§impl PartialEq for Reconciled
impl PartialEq for Reconciled
Source§fn eq(&self, other: &Reconciled) -> bool
fn eq(&self, other: &Reconciled) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Reconciled
Auto Trait Implementations§
impl Freeze for Reconciled
impl RefUnwindSafe for Reconciled
impl Send for Reconciled
impl Sync for Reconciled
impl Unpin for Reconciled
impl UnsafeUnpin for Reconciled
impl UnwindSafe for Reconciled
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