[][src]Struct futures_signals::signal_map::MutableBTreeMap

pub struct MutableBTreeMap<K, V>(_);

Implementations

impl<K, V> MutableBTreeMap<K, V>[src]

pub fn with_values(values: BTreeMap<K, V>) -> Self[src]

pub fn lock_ref(&self) -> MutableBTreeMapLockRef<'_, K, V>[src]

pub fn lock_mut(&self) -> MutableBTreeMapLockMut<'_, K, V>[src]

impl<K, V> MutableBTreeMap<K, V> where
    K: Ord
[src]

pub fn new() -> Self[src]

impl<K, V> MutableBTreeMap<K, V> where
    K: Ord + Clone,
    V: Clone
[src]

Trait Implementations

impl<K, V> Debug for MutableBTreeMap<K, V> where
    K: Debug,
    V: Debug
[src]

impl<K, V> Default for MutableBTreeMap<K, V> where
    K: Ord
[src]

impl<'de, K, V> Deserialize<'de> for MutableBTreeMap<K, V> where
    BTreeMap<K, V>: Deserialize<'de>, 
[src]

impl<K, V> Serialize for MutableBTreeMap<K, V> where
    BTreeMap<K, V>: Serialize
[src]

Auto Trait Implementations

impl<K, V> RefUnwindSafe for MutableBTreeMap<K, V>

impl<K, V> Send for MutableBTreeMap<K, V> where
    K: Send + Sync,
    V: Send + Sync

impl<K, V> Sync for MutableBTreeMap<K, V> where
    K: Send + Sync,
    V: Send + Sync

impl<K, V> Unpin for MutableBTreeMap<K, V>

impl<K, V> UnwindSafe for MutableBTreeMap<K, V>

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<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.