Trait no_std_compat2::string::ToString

1.0.0 · source ·
pub trait ToString {
    // Required method
    fn to_string(&self) -> String;
}
Available on non-crate feature std only.
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.

Required Methods§

source

fn to_string(&self) -> String

Converts the given value to a String.

Examples

Basic usage:

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

assert_eq!(five, i.to_string());

Implementors§

source§

impl ToString for AsciiChar

Available on non-no_global_oom_handling only.
1.17.0 · source§

impl ToString for Cow<'_, str>

Available on non-no_global_oom_handling only.
1.68.0 · source§

impl ToString for bool

Available on non-no_global_oom_handling only.
1.46.0 · source§

impl ToString for char

Available on non-no_global_oom_handling only.
1.54.0 · source§

impl ToString for i8

Available on non-no_global_oom_handling only.
1.9.0 · source§

impl ToString for str

Available on non-no_global_oom_handling only.
1.54.0 · source§

impl ToString for u8

Available on non-no_global_oom_handling only.
1.71.0-nightly · source§

impl ToString for Arguments<'_>

Available on non-no_global_oom_handling only.
1.17.0 · source§

impl ToString for String

Available on non-no_global_oom_handling only.
source§

impl<T> ToString for Twhere T: Display + ?Sized,

Available on non-no_global_oom_handling only.

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.