Struct ascii_forge::prelude::PrintStyledContent
source · 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 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> 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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