pub struct ProteinSequence { /* private fields */ }
Expand description
BLAST database representation of a protein sequence.
Implementations§
Source§impl ProteinSequence
impl ProteinSequence
Trait Implementations§
Source§impl Clone for ProteinSequence
impl Clone for ProteinSequence
Source§fn clone(&self) -> ProteinSequence
fn clone(&self) -> ProteinSequence
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProteinSequence
impl Debug for ProteinSequence
Source§impl Display for ProteinSequence
Render the sequence as an IUPAC amino acid sequence.
impl Display for ProteinSequence
Render the sequence as an IUPAC amino acid sequence.
Source§impl FromIterator<NcbiStdaaBase> for ProteinSequence
impl FromIterator<NcbiStdaaBase> for ProteinSequence
Source§fn from_iter<T: IntoIterator<Item = NcbiStdaaBase>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = NcbiStdaaBase>>(iter: T) -> Self
Creates a value from an iterator. Read more
Source§impl FromStr for ProteinSequence
Create a ProteinSequence
from an IUPAC amino acid sequence.
Accepts both upper and lowercase versions of the bases.
impl FromStr for ProteinSequence
Create a ProteinSequence
from an IUPAC amino acid sequence.
Accepts both upper and lowercase versions of the bases.
Source§impl Ord for ProteinSequence
impl Ord for ProteinSequence
Source§fn cmp(&self, other: &ProteinSequence) -> Ordering
fn cmp(&self, other: &ProteinSequence) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProteinSequence
impl PartialEq for ProteinSequence
Source§impl PartialOrd for ProteinSequence
impl PartialOrd for ProteinSequence
impl Eq for ProteinSequence
impl StructuralPartialEq for ProteinSequence
Auto Trait Implementations§
impl Freeze for ProteinSequence
impl RefUnwindSafe for ProteinSequence
impl Send for ProteinSequence
impl Sync for ProteinSequence
impl Unpin for ProteinSequence
impl UnwindSafe for ProteinSequence
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