textos 0.0.3

Texts, strings, formatting, unicode…
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// textos::string::strings
//
//! `Strings` trait.
//

// use crate::error::TextosResult as Result;
use core::fmt::Display;

/// Common trait for all string types.
///
/// It depends on the [`ToString`] trait if the `alloc` feature is enabled.
pub trait Strings: Display {}