Trait bio_types::strand::Same[][src]

pub trait Same {
    fn same(&self, _: &Self) -> bool;
}

Equality-like operator for comparing strand information. Unknown strands are not equal, but they are the "same" as other unknown strands.

Required Methods

Indicate when two strands are the "same" -- two unknown/unspecified strands are the "same" but are not equal.

Implementations on Foreign Types

impl<T> Same for Option<T> where
    T: Same
[src]

Implementors