Crate fish_printf

Source

Re-exports§

pub use locale::Locale;
pub use locale::C_LOCALE;
pub use locale::EN_US_LOCALE;

Modules§

locale

Macros§

sprintf
A macro to format a string using fish_printf with C-locale formatting rules.

Enums§

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.

Traits§

FormatString
ToArg
Conversion from a raw value to a printf argument.

Functions§

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.