pub enum NimbleLayerError {
IoError(Error),
DatagramInOrderError(DatagramOrderInError),
MillisFromLowerError,
AbsoluteTimeError,
}
Variants§
Trait Implementations§
Source§impl Debug for NimbleLayerError
impl Debug for NimbleLayerError
Source§impl From<DatagramOrderInError> for NimbleLayerError
impl From<DatagramOrderInError> for NimbleLayerError
Source§fn from(err: DatagramOrderInError) -> NimbleLayerError
fn from(err: DatagramOrderInError) -> NimbleLayerError
Converts to this type from the input type.
Source§impl From<Error> for NimbleLayerError
impl From<Error> for NimbleLayerError
Source§fn from(err: Error) -> NimbleLayerError
fn from(err: Error) -> NimbleLayerError
Converts to this type from the input type.
Source§impl From<NimbleLayerError> for ClientError
impl From<NimbleLayerError> for ClientError
Source§fn from(value: NimbleLayerError) -> ClientError
fn from(value: NimbleLayerError) -> ClientError
Converts to this type from the input type.
Source§impl From<NimbleLayerError> for HostError
impl From<NimbleLayerError> for HostError
Source§fn from(e: NimbleLayerError) -> HostError
fn from(e: NimbleLayerError) -> HostError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NimbleLayerError
impl !RefUnwindSafe for NimbleLayerError
impl Send for NimbleLayerError
impl Sync for NimbleLayerError
impl Unpin for NimbleLayerError
impl !UnwindSafe for NimbleLayerError
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