Struct rhit::Print[][src]

pub struct Print<T>(pub T)
where
    T: Clone + Display
;

A command that prints the given displayable type.

Commands must be executed/queued for execution otherwise they do nothing.

Trait Implementations

impl<T> Clone for Print<T> where
    T: Clone + Display
[src]

impl<T> Command for Print<T> where
    T: Clone + Display
[src]

type AnsiType = T

impl<T> Copy for Print<T> where
    T: Clone + Copy + Display
[src]

impl<T> Debug for Print<T> where
    T: Clone + Debug + Display
[src]

impl<T> Display for Print<T> where
    T: Clone + Display
[src]

impl<T> Eq for Print<T> where
    T: Clone + Eq + Display
[src]

impl<T> PartialEq<Print<T>> for Print<T> where
    T: Clone + PartialEq<T> + Display
[src]

impl<T> StructuralEq for Print<T> where
    T: Clone + Display
[src]

impl<T> StructuralPartialEq for Print<T> where
    T: Clone + Display
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Print<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Print<T> where
    T: Send
[src]

impl<T> Sync for Print<T> where
    T: Sync
[src]

impl<T> Unpin for Print<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Print<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Fun for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.