pub struct CompletionResult {
pub patch: AdditiveStaffPatch,
pub before: Staff,
pub after: Staff,
pub search: SearchReceipt,
pub provenance: CompletionProvenance,
}Expand description
Generic reversible completion output.
Fields§
§patch: AdditiveStaffPatchExact additive patch selected by bounded search.
before: StaffUnchanged source staff.
after: StaffCompleted staff after applying the selected patch.
search: SearchReceiptExact bounded-search termination receipt.
provenance: CompletionProvenanceReversible patch provenance and identity evidence.
Trait Implementations§
Source§impl Clone for CompletionResult
impl Clone for CompletionResult
Source§fn clone(&self) -> CompletionResult
fn clone(&self) -> CompletionResult
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 CompletionResult
impl Debug for CompletionResult
impl Eq for CompletionResult
Source§impl PartialEq for CompletionResult
impl PartialEq for CompletionResult
impl StructuralPartialEq for CompletionResult
Auto Trait Implementations§
impl Freeze for CompletionResult
impl RefUnwindSafe for CompletionResult
impl Send for CompletionResult
impl Sync for CompletionResult
impl Unpin for CompletionResult
impl UnsafeUnpin for CompletionResult
impl UnwindSafe for CompletionResult
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