A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html below:

ToString in alloc::string - Rust

Trait ToString1.36.0 · Source
pub trait ToString {
    // Required method
    fn to_string(&self) -> String;
}
Expand description

A trait for converting a value to a String.

This trait is automatically implemented for any type which implements the Display trait. As such, ToString shouldn’t be implemented directly: Display should be implemented instead, and you get the ToString implementation for free.

1.0.0 · Source

Converts the given value to a String.

§Examples
let i = 5;
let five = String::from("5");

assert_eq!(five, i.to_string());
1.0.0 · Source§ §Panics

In this implementation, the to_string method panics if the Display implementation returns an error. This indicates an incorrect Display implementation since fmt::Write for String never returns an error itself.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4