enum RingBufferState {
Running,
Stopped,
}Variants§
Running
Running: RingBuffer is running, consuming transfer descriptor.
Stopped
Stopped: RingBuffer already stopped.
Trait Implementations§
Source§impl Clone for RingBufferState
impl Clone for RingBufferState
Source§fn clone(&self) -> RingBufferState
fn clone(&self) -> RingBufferState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for RingBufferState
impl PartialEq for RingBufferState
impl Copy for RingBufferState
impl Eq for RingBufferState
impl StructuralPartialEq for RingBufferState
Auto Trait Implementations§
impl Freeze for RingBufferState
impl RefUnwindSafe for RingBufferState
impl Send for RingBufferState
impl Sync for RingBufferState
impl Unpin for RingBufferState
impl UnwindSafe for RingBufferState
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