#[repr(u32)]pub enum StreamStage {
Init = 0,
LoadHeader = 1,
Read = 2,
Load = 3,
Flush = 4,
}Variants§
Trait Implementations§
Source§impl Clone for StreamStage
impl Clone for StreamStage
Source§fn clone(&self) -> StreamStage
fn clone(&self) -> StreamStage
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 StreamStage
impl Debug for StreamStage
Source§impl PartialEq for StreamStage
impl PartialEq for StreamStage
Source§fn eq(&self, other: &StreamStage) -> bool
fn eq(&self, other: &StreamStage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StreamStage
impl Eq for StreamStage
impl StructuralPartialEq for StreamStage
Auto Trait Implementations§
impl Freeze for StreamStage
impl RefUnwindSafe for StreamStage
impl Send for StreamStage
impl Sync for StreamStage
impl Unpin for StreamStage
impl UnsafeUnpin for StreamStage
impl UnwindSafe for StreamStage
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