pub enum AheadOrBehind {
Ahead,
Exact,
Behind,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AheadOrBehind
impl Clone for AheadOrBehind
Source§fn clone(&self) -> AheadOrBehind
fn clone(&self) -> AheadOrBehind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AheadOrBehind
Source§impl Debug for AheadOrBehind
impl Debug for AheadOrBehind
impl Eq for AheadOrBehind
Source§impl PartialEq for AheadOrBehind
impl PartialEq for AheadOrBehind
Source§fn eq(&self, other: &AheadOrBehind) -> bool
fn eq(&self, other: &AheadOrBehind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AheadOrBehind
Auto Trait Implementations§
impl Freeze for AheadOrBehind
impl RefUnwindSafe for AheadOrBehind
impl Send for AheadOrBehind
impl Sync for AheadOrBehind
impl Unpin for AheadOrBehind
impl UnsafeUnpin for AheadOrBehind
impl UnwindSafe for AheadOrBehind
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