pub struct NodeUpdateError {
pub is_receive_queue_full: bool,
pub is_transit_queue_full: bool,
}Expand description
Error that can be returned by Node update method.
Fields§
§is_receive_queue_full: boolWhether the received packet queue is full, meaning that a packet addressed to this node could not be stored.
is_transit_queue_full: boolWhether the transit queue is full, meaning that a packet addressed to another node could not be scheduled for forwarding.
Auto Trait Implementations§
impl Freeze for NodeUpdateError
impl RefUnwindSafe for NodeUpdateError
impl Send for NodeUpdateError
impl Sync for NodeUpdateError
impl Unpin for NodeUpdateError
impl UnsafeUnpin for NodeUpdateError
impl UnwindSafe for NodeUpdateError
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