pub enum Side<T>{
Left(T),
Right(T),
}Expand description
Which side of the IBF is this from
Variants§
Left(T)
Was on the “Left” side and missing in the “Right” side
Right(T)
Was on the “Right” side and missing in the “Left” side
Trait Implementations§
impl<T> Copy for Side<T>
impl<T> Eq for Side<T>
impl<T> StructuralPartialEq for Side<T>
Auto Trait Implementations§
impl<T> Freeze for Side<T>where
T: Freeze,
impl<T> RefUnwindSafe for Side<T>where
T: RefUnwindSafe,
impl<T> Send for Side<T>where
T: Send,
impl<T> Sync for Side<T>where
T: Sync,
impl<T> Unpin for Side<T>where
T: Unpin,
impl<T> UnwindSafe for Side<T>where
T: 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