Enum bolic_network::hub::endpoint::EndpointError
source · pub enum EndpointError {
TransportNotAvailable,
Worker(WorkerError),
IO(Error),
}Variants§
TransportNotAvailable
The transport inside the endpoint is not available for information.
Worker(WorkerError)
IO(Error)
Trait Implementations§
source§impl Debug for EndpointError
impl Debug for EndpointError
source§impl From<EndpointError> for HubError
impl From<EndpointError> for HubError
source§fn from(err: EndpointError) -> Self
fn from(err: EndpointError) -> Self
Converts to this type from the input type.
source§impl From<Error> for EndpointError
impl From<Error> for EndpointError
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 EndpointError
impl !RefUnwindSafe for EndpointError
impl Send for EndpointError
impl Sync for EndpointError
impl Unpin for EndpointError
impl !UnwindSafe for EndpointError
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