pub enum OutputFrameKindTrace {
Baseline,
Delta,
Clear(ClearReason),
Rebaseline(RebaselineReason),
}Expand description
Output frame kind without materialized payload.
Variants§
Baseline
Baseline frame.
Delta
Delta frame.
Clear(ClearReason)
Clear frame with reason.
Rebaseline(RebaselineReason)
Rebaseline frame with reason.
Trait Implementations§
Source§impl Clone for OutputFrameKindTrace
impl Clone for OutputFrameKindTrace
Source§fn clone(&self) -> OutputFrameKindTrace
fn clone(&self) -> OutputFrameKindTrace
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 OutputFrameKindTrace
Source§impl Debug for OutputFrameKindTrace
impl Debug for OutputFrameKindTrace
impl Eq for OutputFrameKindTrace
Source§impl PartialEq for OutputFrameKindTrace
impl PartialEq for OutputFrameKindTrace
Source§fn eq(&self, other: &OutputFrameKindTrace) -> bool
fn eq(&self, other: &OutputFrameKindTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OutputFrameKindTrace
Auto Trait Implementations§
impl Freeze for OutputFrameKindTrace
impl RefUnwindSafe for OutputFrameKindTrace
impl Send for OutputFrameKindTrace
impl Sync for OutputFrameKindTrace
impl Unpin for OutputFrameKindTrace
impl UnsafeUnpin for OutputFrameKindTrace
impl UnwindSafe for OutputFrameKindTrace
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