Skip to main content

IToMutable

Trait IToMutable 

Source
pub trait IToMutable: IPersistent {
    type Mutable;

    // Required method
    fn to_mutable(&self) -> Self::Mutable;
}

Required Associated Types§

Required Methods§

Source

fn to_mutable(&self) -> Self::Mutable

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<E: Clone + Eq + Hash> IToMutable for hara_native::lang::data::ordered_set::Standard<E>

Source§

impl<E: Clone + Eq + Hash> IToMutable for hara_native::lang::data::set::Standard<E>

Source§

impl<E: Clone + Ord> IToMutable for hara_native::lang::data::sorted_set::Standard<E>

Source§

impl<E: Clone> IToMutable for hara_native::lang::data::list::Standard<E>

Source§

impl<E: Clone> IToMutable for hara_native::lang::data::queue::Standard<E>

Source§

impl<E: Clone> IToMutable for hara_native::lang::data::vector::Standard<E>

Source§

impl<K: Clone + Eq + Hash, V: Clone> IToMutable for hara_native::lang::data::map::Standard<K, V>

Source§

impl<K: Clone + Eq + Hash, V: Clone> IToMutable for hara_native::lang::data::ordered_map::Standard<K, V>

Source§

impl<K: Clone + Ord, V: Clone> IToMutable for hara_native::lang::data::sorted_map::Standard<K, V>

Source§

impl<V: Clone> IToMutable for hara_native::lang::data::trie::Standard<V>