pub struct BiInterval {
pub lower: usize,
pub size: usize,
pub lower_rev: usize,
}Expand description
Bidirectional interval in the FM-index.
Represents matching intervals in both the forward and reverse BWT simultaneously.
Fields§
§lower: usizeLower bound in the forward index.
size: usizeSize of the interval (same in both directions).
lower_rev: usizeLower bound in the reverse index.
Implementations§
Trait Implementations§
Source§impl Clone for BiInterval
impl Clone for BiInterval
Source§fn clone(&self) -> BiInterval
fn clone(&self) -> BiInterval
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 BiInterval
impl Debug for BiInterval
Source§impl PartialEq for BiInterval
impl PartialEq for BiInterval
impl Copy for BiInterval
impl Eq for BiInterval
impl StructuralPartialEq for BiInterval
Auto Trait Implementations§
impl Freeze for BiInterval
impl RefUnwindSafe for BiInterval
impl Send for BiInterval
impl Sync for BiInterval
impl Unpin for BiInterval
impl UnsafeUnpin for BiInterval
impl UnwindSafe for BiInterval
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