pub enum GenerateIanaConfigError {
StdIoError(Error),
SourceError(GetStringSourceError),
XmlParsingError(Error),
UnsupportedRegistryType(RegistryType),
}Variants§
StdIoError(Error)
SourceError(GetStringSourceError)
XmlParsingError(Error)
UnsupportedRegistryType(RegistryType)
Trait Implementations§
source§impl Debug for GenerateIanaConfigError
impl Debug for GenerateIanaConfigError
source§impl Display for GenerateIanaConfigError
impl Display for GenerateIanaConfigError
source§impl Error for GenerateIanaConfigError
impl Error for GenerateIanaConfigError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 GenerateIanaConfigError
impl From<Error> for GenerateIanaConfigError
source§impl From<Error> for GenerateIanaConfigError
impl From<Error> for GenerateIanaConfigError
source§impl From<GenerateIanaConfigError> for GenerateError
impl From<GenerateIanaConfigError> for GenerateError
source§fn from(source: GenerateIanaConfigError) -> Self
fn from(source: GenerateIanaConfigError) -> Self
Converts to this type from the input type.
source§impl From<GetStringSourceError> for GenerateIanaConfigError
impl From<GetStringSourceError> for GenerateIanaConfigError
source§fn from(source: GetStringSourceError) -> Self
fn from(source: GetStringSourceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for GenerateIanaConfigError
impl Send for GenerateIanaConfigError
impl Sync for GenerateIanaConfigError
impl Unpin for GenerateIanaConfigError
impl !UnwindSafe for GenerateIanaConfigError
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