pub enum OutputFrameKind<O> {
Baseline(O),
Delta(O),
Clear(ClearReason),
Rebaseline(O, RebaselineReason),
}Expand description
Data-only output frame kind.
Variants§
Baseline(O)
Complete current state for a newly attached output.
Delta(O)
State-replacement delta for an existing output.
Clear(ClearReason)
Clear the consumer state for this output.
Rebaseline(O, RebaselineReason)
Complete current state after an explicit discontinuity.
Trait Implementations§
Source§impl<O: Clone> Clone for OutputFrameKind<O>
impl<O: Clone> Clone for OutputFrameKind<O>
Source§fn clone(&self) -> OutputFrameKind<O>
fn clone(&self) -> OutputFrameKind<O>
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<O: Debug> Debug for OutputFrameKind<O>
impl<O: Debug> Debug for OutputFrameKind<O>
impl<O: Eq> Eq for OutputFrameKind<O>
Source§impl<O: PartialEq> PartialEq for OutputFrameKind<O>
impl<O: PartialEq> PartialEq for OutputFrameKind<O>
Source§fn eq(&self, other: &OutputFrameKind<O>) -> bool
fn eq(&self, other: &OutputFrameKind<O>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<O: PartialEq> StructuralPartialEq for OutputFrameKind<O>
Auto Trait Implementations§
impl<O> Freeze for OutputFrameKind<O>where
O: Freeze,
impl<O> RefUnwindSafe for OutputFrameKind<O>where
O: RefUnwindSafe,
impl<O> Send for OutputFrameKind<O>where
O: Send,
impl<O> Sync for OutputFrameKind<O>where
O: Sync,
impl<O> Unpin for OutputFrameKind<O>where
O: Unpin,
impl<O> UnsafeUnpin for OutputFrameKind<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for OutputFrameKind<O>where
O: UnwindSafe,
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