Expand description
Description of how types should be formatted and parsed.
The formatted value will be output to the provided writer. Format descriptions can be
well-known or obtained by using the
format_description!
macro or a function listed below.
For examples, see the implementors of Formattable,
e.g. well_known::Rfc3339
.
Re-exportsยง
pub use borrowed_format_item::BorrowedFormatItem;
pub use borrowed_format_item::FormatItem;
Deprecated pub use owned_format_item::OwnedFormatItem;
pub use self::component::Component;
pub use self::parse::parse;
pub use self::parse::parse_borrowed;
pub use self::parse::parse_owned;
Modulesยง
- borrowed_
format_ ๐item A format item with borrowed data. - component ๐Part of a format description.
- Various modifiers for components.
- owned_
format_ ๐item A format item with owned data. - parse ๐Parser for format descriptions.
- Well-known formats, typically standards.