Struct bio::data_structures::interval_tree::Entry [] [src]

pub struct Entry<'a, N: 'a, D: 'a> {
    // some fields omitted
}

Methods

impl<'a, N: 'a, D: 'a> Entry<'a, N, D>
[src]

fn data(&self) -> &'a D

Get a reference to the data for this entry

fn interval(&self) -> &'a Range<N>

Get a reference to the interval for this entry

Trait Implementations

impl<'a, N: Clone + 'a, D: Clone + 'a> Clone for Entry<'a, N, D>
[src]

fn clone(&self) -> Entry<'a, N, D>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a, N: Debug + 'a, D: Debug + 'a> Debug for Entry<'a, N, D>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a, N: Eq + 'a, D: Eq + 'a> Eq for Entry<'a, N, D>
[src]

impl<'a, N: PartialEq + 'a, D: PartialEq + 'a> PartialEq for Entry<'a, N, D>
[src]

fn eq(&self, __arg_0: &Entry<'a, N, D>) -> bool

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

fn ne(&self, __arg_0: &Entry<'a, N, D>) -> bool

This method tests for !=.