[][src]Struct varlociraptor::grammar::formula::IUPAC

pub struct IUPAC(_);

Methods

impl IUPAC[src]

pub fn map<__SHRINKWRAP_T, __SHRINKWRAP_F: FnMut(u8) -> __SHRINKWRAP_T>(
    self,
    f: __SHRINKWRAP_F
) -> __SHRINKWRAP_T
[src]

Map a function over the wrapped value, consuming it in the process.

pub fn map_ref<__SHRINKWRAP_T, __SHRINKWRAP_F: FnMut(&u8) -> __SHRINKWRAP_T>(
    &self,
    f: __SHRINKWRAP_F
) -> __SHRINKWRAP_T
[src]

Map a function over the wrapped value without consuming it.

impl IUPAC[src]

pub fn contains(&self, base: u8) -> bool[src]

Trait Implementations

impl AsRef<u8> for IUPAC[src]

impl Borrow<u8> for IUPAC[src]

impl Clone for IUPAC[src]

impl Copy for IUPAC[src]

impl Debug for IUPAC[src]

impl Deref for IUPAC[src]

type Target = u8

The resulting type after dereferencing.

impl Eq for IUPAC[src]

impl Ord for IUPAC[src]

impl PartialEq<IUPAC> for IUPAC[src]

impl PartialOrd<IUPAC> for IUPAC[src]

impl StructuralEq for IUPAC[src]

impl StructuralPartialEq for IUPAC[src]

Auto Trait Implementations

impl RefUnwindSafe for IUPAC

impl Send for IUPAC

impl Sync for IUPAC

impl Unpin for IUPAC

impl UnwindSafe for IUPAC

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,