Content-Length: 9270 | pFad | https://doc.rust-lang.org/std/pin/../default/../rc/../../../../std/string/../fmt/fn.write.html

write in std::fmt - Rust

write

Function write 

1.0.0 · Source
pub fn write(output: &mut dyn Write, fmt: Arguments<'_>) -> Result<(), Error>
Expand description

Takes an output stream and an Arguments struct that can be precompiled with the format_args! macro.

The arguments will be formatted according to the specified format string into the output stream provided.

§Examples

Basic usage:

use std::fmt;

let mut output = String::new();
fmt::write(&mut output, format_args!("Hello {}!", "world"))
    .expect("Error occurred while trying to write in String");
assert_eq!(output, "Hello world!");

Please note that using write! might be preferable. Example:

use std::fmt::Write;

let mut output = String::new();
write!(&mut output, "Hello {}!", "world")
    .expect("Error occurred while trying to write in String");
assert_eq!(output, "Hello world!");








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/pin/../default/../rc/../../../../std/string/../fmt/fn.write.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy