enum Step {
Carry(MeshRequest),
Pumped,
Closed,
}Expand description
One step of the driver loop: what the select settled on.
Variants§
Carry(MeshRequest)
A request to carry.
Pumped
The MAC made progress on its own.
Closed
The link is gone; the session is over.
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more