pub enum SliceDirection {
Backward,
Forward,
}Expand description
Direction of program slice
Variants§
Backward
Backward slice (what affects criterion)
Forward
Forward slice (what is affected by criterion)
Trait Implementations§
Source§impl Clone for SliceDirection
impl Clone for SliceDirection
Source§fn clone(&self) -> SliceDirection
fn clone(&self) -> SliceDirection
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 moreSource§impl Debug for SliceDirection
impl Debug for SliceDirection
Source§impl PartialEq for SliceDirection
impl PartialEq for SliceDirection
Source§fn eq(&self, other: &SliceDirection) -> bool
fn eq(&self, other: &SliceDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SliceDirection
impl Eq for SliceDirection
impl StructuralPartialEq for SliceDirection
Auto Trait Implementations§
impl Freeze for SliceDirection
impl RefUnwindSafe for SliceDirection
impl Send for SliceDirection
impl Sync for SliceDirection
impl Unpin for SliceDirection
impl UnsafeUnpin for SliceDirection
impl UnwindSafe for SliceDirection
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