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 Fail for RegistrationParamsError
impl Fail for RegistrationParamsError
source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read more