pub enum DDPError {
Disconnect(Error),
NoValidSocketAddr,
ParseError(Error),
UnknownClient {
from: SocketAddr,
data: Vec<u8>,
},
InvalidPacket,
NothingToReceive,
CrossBeamError(TryRecvError),
}Expand description
Errors that can occur during DDP operations.
All errors implement the standard std::error::Error trait via thiserror.
Variants§
Disconnect(Error)
Socket or network I/O error
NoValidSocketAddr
Failed to resolve the provided address
ParseError(Error)
JSON parsing error for control messages
UnknownClient
Received data from an unknown or unexpected client
Fields
§
from: SocketAddrThe address that sent the unexpected data
InvalidPacket
Received packet with invalid format or structure
NothingToReceive
No packets are currently available to receive (non-blocking operation)
CrossBeamError(TryRecvError)
Error from the internal packet receiver channel
Trait Implementations§
Source§impl Error for DDPError
impl Error for DDPError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<TryRecvError> for DDPError
impl From<TryRecvError> for DDPError
Source§fn from(source: TryRecvError) -> Self
fn from(source: TryRecvError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DDPError
impl !RefUnwindSafe for DDPError
impl Send for DDPError
impl Sync for DDPError
impl Unpin for DDPError
impl !UnwindSafe for DDPError
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