Enum opensrv_clickhouse::types::column::Either
source · pub enum Either<L, R>where
L: Debug + PartialEq + Clone,
R: Debug + PartialEq + Clone,{
Left(L),
Right(R),
}Variants§
Trait Implementations§
source§impl<L, R> Clone for Either<L, R>where
L: Debug + PartialEq + Clone + Clone,
R: Debug + PartialEq + Clone + Clone,
impl<L, R> Clone for Either<L, R>where L: Debug + PartialEq + Clone + Clone, R: Debug + PartialEq + Clone + Clone,
source§impl<L, R> Debug for Either<L, R>where
L: Debug + PartialEq + Clone + Debug,
R: Debug + PartialEq + Clone + Debug,
impl<L, R> Debug for Either<L, R>where L: Debug + PartialEq + Clone + Debug, R: Debug + PartialEq + Clone + Debug,
source§impl<L, R> PartialEq for Either<L, R>where
L: Debug + PartialEq + Clone + PartialEq,
R: Debug + PartialEq + Clone + PartialEq,
impl<L, R> PartialEq for Either<L, R>where L: Debug + PartialEq + Clone + PartialEq, R: Debug + PartialEq + Clone + PartialEq,
impl<L, R> Eq for Either<L, R>where L: Debug + PartialEq + Clone + Eq, R: Debug + PartialEq + Clone + Eq,
impl<L, R> StructuralEq for Either<L, R>where L: Debug + PartialEq + Clone, R: Debug + PartialEq + Clone,
impl<L, R> StructuralPartialEq for Either<L, R>where L: Debug + PartialEq + Clone, R: Debug + PartialEq + Clone,
Auto Trait Implementations§
impl<L, R> RefUnwindSafe for Either<L, R>where L: RefUnwindSafe, R: RefUnwindSafe,
impl<L, R> Send for Either<L, R>where L: Send, R: Send,
impl<L, R> Sync for Either<L, R>where L: Sync, R: Sync,
impl<L, R> Unpin for Either<L, R>where L: Unpin, R: Unpin,
impl<L, R> UnwindSafe for Either<L, R>where L: UnwindSafe, R: 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