pub enum RxRunningState {
Unknown,
Stopped,
Running,
}
Expand description
Running state of the RxRing
Variants§
Implementations§
Source§impl RunningState
impl RunningState
Sourcepub fn is_running(&self) -> bool
pub fn is_running(&self) -> bool
whether self equals to RunningState::Running
Trait Implementations§
Source§impl Debug for RunningState
impl Debug for RunningState
Source§impl PartialEq for RunningState
impl PartialEq for RunningState
impl Eq for RunningState
impl StructuralPartialEq for RunningState
Auto Trait Implementations§
impl Freeze for RunningState
impl RefUnwindSafe for RunningState
impl Send for RunningState
impl Sync for RunningState
impl Unpin for RunningState
impl UnwindSafe for RunningState
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