pub enum CbResult {
Stop,
Ok,
}Expand description
The result of processing a batch of netlink responses.
Variants§
Stop
Everything went fine and this batch is finished processing.
Ok
Everything went fine, but we expect more messages to come back from the kernel for this batch.
Auto Trait Implementations§
impl Freeze for CbResult
impl RefUnwindSafe for CbResult
impl Send for CbResult
impl Sync for CbResult
impl Unpin for CbResult
impl UnwindSafe for CbResult
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