pub struct Print<T: Display>(pub T);
Expand description
A command that prints the given displayable type.
Commands must be executed/queued for execution otherwise they do nothing.
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T: PartialEq + Display> PartialEq for Print<T>
impl<T: PartialEq + Display> PartialEq for Print<T>
impl<T: Copy + Display> Copy for Print<T>
impl<T: Eq + Display> Eq for Print<T>
impl<T: Display> StructuralPartialEq for Print<T>
Auto Trait Implementations§
impl<T> Freeze for Print<T>where
T: Freeze,
impl<T> RefUnwindSafe for Print<T>where
T: RefUnwindSafe,
impl<T> Send for Print<T>where
T: Send,
impl<T> Sync for Print<T>where
T: Sync,
impl<T> Unpin for Print<T>where
T: Unpin,
impl<T> UnwindSafe for Print<T>where
T: 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