Lines Matching defs:StyledStr
6 pub struct StyledStr {
13 impl StyledStr {
239 impl Default for &'_ StyledStr {
241 static DEFAULT: StyledStr = StyledStr::new();
246 impl From<std::string::String> for StyledStr {
248 let mut styled = StyledStr::new();
254 impl From<&'_ std::string::String> for StyledStr {
256 let mut styled = StyledStr::new();
262 impl From<&'static str> for StyledStr {
264 let mut styled = StyledStr::new();
270 impl From<&'_ &'static str> for StyledStr {
272 StyledStr::from(*name)
276 impl PartialOrd for StyledStr {
282 impl Ord for StyledStr {
295 impl std::fmt::Display for StyledStr {
307 styled: &'s StyledStr,