Lines Matching +full:rust +full:- +full:src
4 [<img alt="github" src="https://img.shields.io/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge…
5 [<img alt="crates.io" src="https://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d6…
6 [<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-itoa-66c2a5?style=for-the-badge&label…
7 [<img alt="build status" src="https://img.shields.io/github/workflow/status/dtolnay/itoa/CI/master?…
18 [`io::Write`]: https://doc.rust-lang.org/std/io/trait.Write.html
19 [`fmt::Write`]: https://doc.rust-lang.org/core/fmt/trait.Write.html
20 [libcore]: https://github.com/rust-lang/rust/blob/b8214dc6c6fc20d0a660fb5700dca9ebf51ebe89/src/libc…
21 [`fmt::Formatter`]: https://doc.rust-lang.org/std/fmt/struct.Formatter.html
39 ```rust
42 fn demo_itoa_write() -> io::Result<()> {
56 fn demo_itoa_fmt() -> fmt::Result {
68 ```rust
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
75 i128, u128, isize and usize. 128-bit integer support requires rustc 1.26+ and
86 Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
87 2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
94 for inclusion in this crate by you, as defined in the Apache-2.0 license, shall