Trait Reverse

Source
pub trait Reverse: ReverseMut + ToOwned
where <Self as ToOwned>::Owned: ReverseMut,
{ // Provided method fn to_rev(&self) -> <Self as ToOwned>::Owned { ... } }

Provided Methods§

Source

fn to_rev(&self) -> <Self as ToOwned>::Owned

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<A: Codec> Reverse for Seq<A>

Source§

impl<A: Codec> Reverse for SeqSlice<A>

Source§

impl<A: Codec, const K: usize> Reverse for Kmer<A, K, usize>