pub enum SpecialSendError {
Timeout,
SendingQueueIsFull,
}
Expand description
Errors, that may occur during the call
of Node
send_with_transaction
or send_ping_pong
method.
Variants§
Timeout
Case when expected response was not received.
SendingQueueIsFull
Case, when the limit of number of packets to send isreached.
Trait Implementations§
Source§impl Debug for SpecialSendError
impl Debug for SpecialSendError
Auto Trait Implementations§
impl Freeze for SpecialSendError
impl RefUnwindSafe for SpecialSendError
impl Send for SpecialSendError
impl Sync for SpecialSendError
impl Unpin for SpecialSendError
impl UnwindSafe for SpecialSendError
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