Expand description
§How to use
Add the dependency to your project with:
cargo add fmtex
Use library traits to format something:
use fmtex::prelude::*;
let s = [1, 2, 3].joined(", ").to_string();
assert_eq!(s, "1, 2, 3");
Modules§
- prelude
- Reexported extension traits.
Structs§
- Consumed
- Reference iterator for the
consumed
method. - Joined
- Display implementer for the
joined
method. - Repeated
- Display implementer for the
repeated
method.
Traits§
- Display
Ext - Extension trait for
Display
. - Into
Iterator ByRef Ext - Extension trait for references that are
IntoIterator
. - Into
Iterator Ext - Extension trait for
IntoIterator
.