pub struct PrintStyledContent<D>(pub StyledContent<D>)
where
D: Display;
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 for PrintStyledContent<D>
impl<D> Clone for PrintStyledContent<D>
Source§fn clone(&self) -> PrintStyledContent<D>
fn clone(&self) -> PrintStyledContent<D>
Returns a duplicate 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> Command for PrintStyledContent<D>where
D: Display,
impl<D> Command for PrintStyledContent<D>where
D: Display,
Source§impl<D> Debug for PrintStyledContent<D>
impl<D> Debug 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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§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