Trait ChainConversionsOwned

Source
pub trait ChainConversionsOwned: ChainConversions {
    type OwnedChain: Sized;

    // Required methods
    fn into_chain(self) -> Self::OwnedChain;
    fn into_inner(self) -> Self::Inner;
}

Required Associated Types§

Required Methods§

Source

fn into_chain(self) -> Self::OwnedChain

Source

fn into_inner(self) -> Self::Inner

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.

Implementations on Foreign Types§

Source§

impl ChainConversionsOwned for String

Source§

impl<K, V> ChainConversionsOwned for BTreeMap<K, V>

Source§

impl<K, V, S> ChainConversionsOwned for HashMap<K, V, S>

Source§

type OwnedChain = Chain<HashMap<K, V, S>>

Source§

fn into_chain(self) -> Chain<HashMap<K, V, S>>

Source§

fn into_inner(self) -> HashMap<K, V, S>

Source§

impl<T> ChainConversionsOwned for BTreeSet<T>

Source§

impl<T> ChainConversionsOwned for Vec<T>

Source§

impl<T, S> ChainConversionsOwned for HashSet<T, S>

Source§

impl<T, const N: usize> ChainConversionsOwned for [T; N]

Implementors§