Trait nom::lib::std::prelude::v1::rust_2018::ToString 1.0.0[−][src]
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
pub fn to_string(&self) -> String
[src]
Converts the given value to a String
.
Examples
Basic usage:
let i = 5; let five = String::from("5"); assert_eq!(five, i.to_string());
Implementations on Foreign Types
Loading content...Implementors
Loading content...