pub enum StartState {
Stopped(MonotonicInstant),
Starting(Option<CodecStartResponder>),
Started(MonotonicInstant),
Stopping(Option<CodecStopResponder>),
}
Variants§
Stopped(MonotonicInstant)
Starting(Option<CodecStartResponder>)
Started(MonotonicInstant)
Stopping(Option<CodecStopResponder>)
Trait Implementations§
Source§impl Debug for StartState
impl Debug for StartState
Auto Trait Implementations§
impl Freeze for StartState
impl !RefUnwindSafe for StartState
impl Send for StartState
impl Sync for StartState
impl Unpin for StartState
impl !UnwindSafe for StartState
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