pub enum OuterJoinArg<K, A, B> {
Left(K, A),
Right(K, B),
Both(K, A, B),
}Variants§
Auto Trait Implementations§
impl<K, A, B> Freeze for OuterJoinArg<K, A, B>
impl<K, A, B> RefUnwindSafe for OuterJoinArg<K, A, B>
impl<K, A, B> Send for OuterJoinArg<K, A, B>
impl<K, A, B> Sync for OuterJoinArg<K, A, B>
impl<K, A, B> Unpin for OuterJoinArg<K, A, B>
impl<K, A, B> UnwindSafe for OuterJoinArg<K, A, B>
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