#[non_exhaustive]pub enum Format {
InsufficientTypeInformation,
InvalidComponent(&'static str),
ComponentRange(Box<ComponentRange>),
StdIo(Error),
}
Available on crate feature
formatting
only.Expand description
An error occurred when formatting.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InsufficientTypeInformation
The type being formatted does not contain sufficient information to format a component.
InvalidComponent(&'static str)
The component named has a value that cannot be formatted into the requested format.
This variant is only returned when using well-known formats.
ComponentRange(Box<ComponentRange>)
A component provided was out of range.
StdIo(Error)
A value of std::io::Error
was returned internally.
Trait Implementations§
Source§impl Error for Format
Available on crate feature std
only.
impl Error for Format
Available on crate feature
std
only.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<ComponentRange> for Format
impl From<ComponentRange> for Format
Source§fn from(err: ComponentRange) -> Self
fn from(err: ComponentRange) -> Self
Converts to this type from the input type.
Source§impl TryFrom<Format> for ComponentRange
impl TryFrom<Format> for ComponentRange
Auto Trait Implementations§
impl Freeze for Format
impl !RefUnwindSafe for Format
impl Send for Format
impl Sync for Format
impl Unpin for Format
impl !UnwindSafe for Format
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