Docs.rs
dyn-fmt-0.4.3
dyn-fmt 0.4.3
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
A1-Triard
Dependencies
document-features ^0.2.7
normal
Versions
100%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
dyn_fmt
0.4.3
All Items
Sections
Feature flags
Crate Items
Macros
Structs
Traits
Crate
dyn_fmt
Copy item path
Source
Expand description
Static format macro
Dynamic analog
format!
format
format_args!
Arguments::new
write!
dyn_write!
§
Feature flags
std
(enabled by default)
— disable to make the library
#![no_std]
.
Macros
§
dyn_
write
Writes formatted data into a buffer. A runtime analog of
write!
macro. In contrast with the macro format string have not be a string literal.
Structs
§
Arguments
This structure represents a format string combined with its arguments. In contrast with
fmt::Arguments
this structure can be easily and safely created at runtime.
Traits
§
AsStr
Format
Ext
Extends strings with the
format
method, which is a runtime analog of the
format!
macro. Unavailable in
no_std
environment.