Struct pretty_trait::Join [] [src]

pub struct Join<T, U>(pub T, pub U);

A wrapper which concatenates two pretty-printable values.

This struct is created by the join method from the JoinExt trait. See its documentation for more.

Trait Implementations

impl<T: Clone, U: Clone> Clone for Join<T, U>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy, U: Copy> Copy for Join<T, U>
[src]

impl<T: Debug, U: Debug> Debug for Join<T, U>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: Pretty, U: Pretty> Pretty for Join<T, U>
[src]

[src]

Calculate the intrinsic size of this value, if it were to be displayed on a single line.

[src]

Render this value in a given context.

Auto Trait Implementations

impl<T, U> Send for Join<T, U> where
    T: Send,
    U: Send

impl<T, U> Sync for Join<T, U> where
    T: Sync,
    U: Sync