Struct bio::data_structures::qgram_index::Match [] [src]

pub struct Match {
    pub pattern: Interval,
    pub text: Interval,
    pub count: usize,
}

A match between the pattern and the text.

Fields

Trait Implementations

impl PartialEq for Match
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Match
[src]

impl Debug for Match
[src]

Formats the value using the given formatter.

impl Copy for Match
[src]

impl Clone for Match
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Ord for Match
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for Match
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more