pub struct Styled<T> { /* private fields */ }Expand description
A styled text container that applies ANSI terminal effects to text.
This struct wraps text content with a collection of visual effects that can be applied when the text is displayed in a terminal. Effects include bold, italic, underline, dim, and reversed styling.
§Type Parameters
T- The type of the text content to be styled
§Examples
use thag_styling::{AnsiStyleExt, Styled};
let styled = "Hello".style().bold().italic();
println!("{styled}"); // Prints "Hello" in bold italicImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Styled<T>where
T: Freeze,
impl<T> RefUnwindSafe for Styled<T>where
T: RefUnwindSafe,
impl<T> Send for Styled<T>where
T: Send,
impl<T> Sync for Styled<T>where
T: Sync,
impl<T> Unpin for Styled<T>where
T: Unpin,
impl<T> UnwindSafe for Styled<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> AnsiStyleExt for Twhere
T: Display,
impl<T> AnsiStyleExt for Twhere
T: Display,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more