pub struct Pair<T, U> {
pub left: T,
pub right: U,
}Fields§
§left: T§right: UImplementations§
Auto Trait Implementations§
impl<T, U> Freeze for Pair<T, U>
impl<T, U> RefUnwindSafe for Pair<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for Pair<T, U>
impl<T, U> Sync for Pair<T, U>
impl<T, U> Unpin for Pair<T, U>
impl<T, U> UnwindSafe for Pair<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