Crate fish_printf
Source pub use locale::Locale;
pub use locale::C_LOCALE;
pub use locale::EN_US_LOCALE;
- locale
- sprintf
- A macro to format a string using
fish_printf
with C-locale formatting rules.
- Arg
- Printf argument types.
Note no implementation of
ToArg
constructs the owned variants (String and WString);
callers can do so explicitly. - Error
- Possible errors from printf.
- FormatString
- ToArg
- Conversion from a raw value to a printf argument.
- printf_c_locale
- Formats a string using the provided format specifiers and arguments, using the C locale,
and writes the output to the given
Write
implementation. - sprintf_locale
- Formats a string using the provided format specifiers, arguments, and locale,
and writes the output to the given
Write
implementation.