pub enum NetworkRuntimeError {
InvalidTopology,
WorkerAffinity(usize),
WorkerSpawn {
cpu: usize,
source: TaskError,
},
QueueInit(NetError),
IrqRegistration(PinnedNetIrqError),
Device(NetError),
StartupEntropy(NetError),
}Expand description
Runtime initialization or lifecycle error.
Variants§
InvalidTopology
WorkerAffinity(usize)
WorkerSpawn
QueueInit(NetError)
IrqRegistration(PinnedNetIrqError)
Device(NetError)
StartupEntropy(NetError)
Trait Implementations§
Source§impl Debug for NetworkRuntimeError
impl Debug for NetworkRuntimeError
Source§impl Display for NetworkRuntimeError
impl Display for NetworkRuntimeError
Source§impl Error for NetworkRuntimeError
impl Error for NetworkRuntimeError
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<NetError> for NetworkRuntimeError
impl From<NetError> for NetworkRuntimeError
Source§impl From<NetError> for NetworkRuntimeError
impl From<NetError> for NetworkRuntimeError
Source§impl From<PinnedNetIrqError> for NetworkRuntimeError
impl From<PinnedNetIrqError> for NetworkRuntimeError
Source§fn from(source: PinnedNetIrqError) -> Self
fn from(source: PinnedNetIrqError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for NetworkRuntimeError
impl !UnwindSafe for NetworkRuntimeError
impl Freeze for NetworkRuntimeError
impl Send for NetworkRuntimeError
impl Sync for NetworkRuntimeError
impl Unpin for NetworkRuntimeError
impl UnsafeUnpin for NetworkRuntimeError
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