Struct crossterm::style::PrintStyledContent
source · pub struct PrintStyledContent<D: Display>(pub StyledContent<D>);
Expand description
A command that prints styled content.
See StyledContent
for more info.
§Notes
Commands must be executed/queued for execution otherwise they do nothing.
Tuple Fields§
§0: StyledContent<D>
Trait Implementations§
source§impl<D: Clone + Display> Clone for PrintStyledContent<D>
impl<D: Clone + Display> Clone for PrintStyledContent<D>
source§fn clone(&self) -> PrintStyledContent<D>
fn clone(&self) -> PrintStyledContent<D>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<D: Display> Command for PrintStyledContent<D>
impl<D: Display> Command for PrintStyledContent<D>
source§impl Display for PrintStyledContent<&'static str>
impl Display for PrintStyledContent<&'static str>
source§impl Display for PrintStyledContent<String>
impl Display for PrintStyledContent<String>
impl<D: Copy + Display> Copy for PrintStyledContent<D>
Auto Trait Implementations§
impl<D> Freeze for PrintStyledContent<D>where
D: Freeze,
impl<D> RefUnwindSafe for PrintStyledContent<D>where
D: RefUnwindSafe,
impl<D> Send for PrintStyledContent<D>where
D: Send,
impl<D> Sync for PrintStyledContent<D>where
D: Sync,
impl<D> Unpin for PrintStyledContent<D>where
D: Unpin,
impl<D> UnwindSafe for PrintStyledContent<D>where
D: UnwindSafe,
Blanket Implementations§
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