pub enum CommsRuntimeError {
IdentityError(String),
SessionIdentityInUse(SessionId),
TrustLoadError(String),
ListenerError(Error),
AlreadyStarted,
UnsafeBinding(String),
InprocRegistrationRejected(RegistrationRejection),
}Variants§
IdentityError(String)
SessionIdentityInUse(SessionId)
TrustLoadError(String)
ListenerError(Error)
AlreadyStarted
UnsafeBinding(String)
InprocRegistrationRejected(RegistrationRejection)
Trait Implementations§
Source§impl Debug for CommsRuntimeError
impl Debug for CommsRuntimeError
Source§impl Display for CommsRuntimeError
impl Display for CommsRuntimeError
Source§impl Error for CommsRuntimeError
impl Error for CommsRuntimeError
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<Error> for CommsRuntimeError
impl From<Error> for CommsRuntimeError
Source§impl From<SessionClaimError> for CommsRuntimeError
Available on non-WebAssembly only.
impl From<SessionClaimError> for CommsRuntimeError
Available on non-WebAssembly only.
Source§fn from(err: SessionClaimError) -> Self
fn from(err: SessionClaimError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CommsRuntimeError
impl !UnwindSafe for CommsRuntimeError
impl Freeze for CommsRuntimeError
impl Send for CommsRuntimeError
impl Sync for CommsRuntimeError
impl Unpin for CommsRuntimeError
impl UnsafeUnpin for CommsRuntimeError
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