pub struct LeftBiasedOr<L, R>{
pub left: L,
pub right: R,
}Fields§
§left: L§right: RTrait Implementations§
Source§impl<L, R> Clone for LeftBiasedOr<L, R>
impl<L, R> Clone for LeftBiasedOr<L, R>
Source§fn clone(&self) -> LeftBiasedOr<L, R>
fn clone(&self) -> LeftBiasedOr<L, R>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<L, R> Debug for LeftBiasedOr<L, R>
impl<L, R> Debug for LeftBiasedOr<L, R>
Source§impl<L: Editor, R: Editor> Editor for LeftBiasedOr<L, R>
impl<L: Editor, R: Editor> Editor for LeftBiasedOr<L, R>
Source§impl<L, R> Hash for LeftBiasedOr<L, R>
impl<L, R> Hash for LeftBiasedOr<L, R>
Source§impl<L, R> Ord for LeftBiasedOr<L, R>
impl<L, R> Ord for LeftBiasedOr<L, R>
Source§fn cmp(&self, other: &LeftBiasedOr<L, R>) -> Ordering
fn cmp(&self, other: &LeftBiasedOr<L, R>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<L, R> PartialEq for LeftBiasedOr<L, R>
impl<L, R> PartialEq for LeftBiasedOr<L, R>
Source§impl<L, R> PartialOrd for LeftBiasedOr<L, R>
impl<L, R> PartialOrd for LeftBiasedOr<L, R>
impl<L, R> Eq for LeftBiasedOr<L, R>
impl<L, R> StructuralPartialEq for LeftBiasedOr<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for LeftBiasedOr<L, R>
impl<L, R> RefUnwindSafe for LeftBiasedOr<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for LeftBiasedOr<L, R>
impl<L, R> Sync for LeftBiasedOr<L, R>
impl<L, R> Unpin for LeftBiasedOr<L, R>
impl<L, R> UnwindSafe for LeftBiasedOr<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