#[non_exhaustive]pub enum Format {
#[non_exhaustive] InsufficientTypeInformation,
InvalidComponent(&'static str),
ComponentRange(Box<ComponentRange>),
StdIo(Error),
}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.
#[non_exhaustive]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
impl Error for Format
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) -> Format
fn from(err: ComponentRange) -> Format
Converts to this type from the input type.
Sourceยงimpl TryFrom<Format> for ComponentRange
impl TryFrom<Format> for ComponentRange
Sourceยงtype Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
Sourceยงfn try_from(
err: Format,
) -> Result<ComponentRange, <ComponentRange as TryFrom<Format>>::Error>
fn try_from( err: Format, ) -> Result<ComponentRange, <ComponentRange as TryFrom<Format>>::Error>
Performs the conversion.
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