pub enum PresentedSliceKind {
FifoChunk,
FrameSwapFrame,
}Expand description
The delivery mode of the presented slice passed to an OutputFilter.
Variants§
FifoChunk
A FIFO chunk materialized by the frame session.
FrameSwapFrame
A complete frame-swap hardware frame.
Trait Implementations§
Source§impl Clone for PresentedSliceKind
impl Clone for PresentedSliceKind
Source§fn clone(&self) -> PresentedSliceKind
fn clone(&self) -> PresentedSliceKind
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 PresentedSliceKind
impl Debug for PresentedSliceKind
Source§impl PartialEq for PresentedSliceKind
impl PartialEq for PresentedSliceKind
Source§fn eq(&self, other: &PresentedSliceKind) -> bool
fn eq(&self, other: &PresentedSliceKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PresentedSliceKind
impl Eq for PresentedSliceKind
impl StructuralPartialEq for PresentedSliceKind
Auto Trait Implementations§
impl Freeze for PresentedSliceKind
impl RefUnwindSafe for PresentedSliceKind
impl Send for PresentedSliceKind
impl Sync for PresentedSliceKind
impl Unpin for PresentedSliceKind
impl UnsafeUnpin for PresentedSliceKind
impl UnwindSafe for PresentedSliceKind
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