Enum bolic_network::hub::WorkerError
source · pub enum WorkerError {
Invalid,
EndpointNotExist,
PollFailure(Error),
Full,
}Variants§
Invalid
Invalid operation.
EndpointNotExist
Endpoint does not exist.
PollFailure(Error)
Event loop failure.
Full
Worker is full, endpoint cannot be added for now.
Trait Implementations§
source§impl Debug for WorkerError
impl Debug for WorkerError
source§impl From<Error> for WorkerError
impl From<Error> for WorkerError
source§impl From<WorkerError> for DriverError
impl From<WorkerError> for DriverError
source§fn from(err: WorkerError) -> Self
fn from(err: WorkerError) -> Self
Converts to this type from the input type.
source§impl From<WorkerError> for EndpointError
impl From<WorkerError> for EndpointError
source§fn from(err: WorkerError) -> Self
fn from(err: WorkerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WorkerError
impl !RefUnwindSafe for WorkerError
impl Send for WorkerError
impl Sync for WorkerError
impl Unpin for WorkerError
impl !UnwindSafe for WorkerError
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