pub enum StrandMode {
Ignore,
Same,
Opposite,
}Expand description
How to handle strand when comparing intervals.
Variants§
Ignore
Ignore strand (default BEDTools behavior).
Same
Only match intervals on the same strand (-s).
Opposite
Only match intervals on the opposite strand (-S).
Trait Implementations§
Source§impl Clone for StrandMode
impl Clone for StrandMode
Source§fn clone(&self) -> StrandMode
fn clone(&self) -> StrandMode
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 Debug for StrandMode
impl Debug for StrandMode
Source§impl PartialEq for StrandMode
impl PartialEq for StrandMode
impl Copy for StrandMode
impl Eq for StrandMode
impl StructuralPartialEq for StrandMode
Auto Trait Implementations§
impl Freeze for StrandMode
impl RefUnwindSafe for StrandMode
impl Send for StrandMode
impl Sync for StrandMode
impl Unpin for StrandMode
impl UnsafeUnpin for StrandMode
impl UnwindSafe for StrandMode
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