pub enum RegistrationParamsError {
NoPort,
BadPort(ParseIntError),
NoUuid,
NoEvent,
NoInfo,
BadInfo(Error),
}Expand description
An error that occurred while collecting the registration parameters.
Variants§
NoPort
The port number was not found.
BadPort(ParseIntError)
The port number was found but could not be parsed.
NoUuid
The uuid was not found.
NoEvent
The registration event to send was not found.
NoInfo
The registration environment info was not found.
BadInfo(Error)
The registration environment info could not be parsed.
Trait Implementations§
Source§impl Debug for RegistrationParamsError
impl Debug for RegistrationParamsError
Source§impl Display for RegistrationParamsError
impl Display for RegistrationParamsError
Source§impl Error for RegistrationParamsError
impl Error for RegistrationParamsError
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()
Auto Trait Implementations§
impl Freeze for RegistrationParamsError
impl !RefUnwindSafe for RegistrationParamsError
impl Send for RegistrationParamsError
impl Sync for RegistrationParamsError
impl Unpin for RegistrationParamsError
impl UnsafeUnpin for RegistrationParamsError
impl !UnwindSafe for RegistrationParamsError
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