pub struct MergePlanDisplay {
pub evidence: MergeEvidenceDisplay,
pub status: &'static str,
pub action: &'static str,
}Expand description
Public display view for a read-only merge plan.
Fields§
§evidence: MergeEvidenceDisplayUnderlying evidence display used as the diagnostic source.
status: &'static strDC-25 plan status.
action: &'static strShort non-mutating action text.
Implementations§
Source§impl MergePlanDisplay
impl MergePlanDisplay
Sourcepub fn displayed_item_count(&self) -> usize
pub fn displayed_item_count(&self) -> usize
Number of report items displayed by this view.
Sourcepub fn total_item_count(&self) -> usize
pub fn total_item_count(&self) -> usize
Number of report items in the full evidence report.
Trait Implementations§
Source§impl Clone for MergePlanDisplay
impl Clone for MergePlanDisplay
Source§fn clone(&self) -> MergePlanDisplay
fn clone(&self) -> MergePlanDisplay
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 MergePlanDisplay
impl Debug for MergePlanDisplay
impl Eq for MergePlanDisplay
Source§impl PartialEq for MergePlanDisplay
impl PartialEq for MergePlanDisplay
impl StructuralPartialEq for MergePlanDisplay
Auto Trait Implementations§
impl Freeze for MergePlanDisplay
impl RefUnwindSafe for MergePlanDisplay
impl Send for MergePlanDisplay
impl Sync for MergePlanDisplay
impl Unpin for MergePlanDisplay
impl UnsafeUnpin for MergePlanDisplay
impl UnwindSafe for MergePlanDisplay
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