collections::string::ToString

Trait collections::string::ToString

pub trait ToString {
    fn to_string(&self) -> String;
}

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

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

  • impl<T: Display + ?Sized> ToString for T
  • impl ToString for str
  • impl<'a> ToString for Cow<'a, str>
  • impl ToString for String

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/collections/string/trait.ToString.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部