pub struct Join<T, U>(pub T, pub U);Expand description
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.
Tuple Fields§
§0: T§1: UTrait Implementations§
impl<T: Copy, U: Copy> Copy for Join<T, U>
Auto Trait Implementations§
impl<T, U> Freeze for Join<T, U>
impl<T, U> RefUnwindSafe for Join<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for Join<T, U>
impl<T, U> Sync for Join<T, U>
impl<T, U> Unpin for Join<T, U>
impl<T, U> UnwindSafe for Join<T, U>where
T: UnwindSafe,
U: 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