pub struct AssocMap<K, V>(pub Vec<(K, V)>);
Tuple Fields§
§0: Vec<(K, V)>
Implementations§
Source§impl<K, V> AssocMap<K, V>
impl<K, V> AssocMap<K, V>
pub fn new() -> Self
Sourcepub fn insert(&mut self, key: K, value: V) -> Option<V>where
K: PartialEq,
pub fn insert(&mut self, key: K, value: V) -> Option<V>where
K: PartialEq,
Inserts a key-value pair into the map.
If the map did not have this key present, None is returned.
If the map did have this key present, the value is updated, and the old value is returned. The key is not updated, though; this matters for types that can be == without being identical. See the module-level documentation for more.
Trait Implementations§
Source§impl<K: IsPlutusData, V: IsPlutusData> IsPlutusData for AssocMap<K, V>
impl<K: IsPlutusData, V: IsPlutusData> IsPlutusData for AssocMap<K, V>
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(plutus_data: &PlutusData) -> Result<Self, PlutusDataError>
Source§impl<K: Ord, V: Ord> Ord for AssocMap<K, V>
impl<K: Ord, V: Ord> Ord for AssocMap<K, V>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<K: PartialOrd, V: PartialOrd> PartialOrd for AssocMap<K, V>
impl<K: PartialOrd, V: PartialOrd> PartialOrd for AssocMap<K, V>
impl<K: Eq, V: Eq> Eq for AssocMap<K, V>
impl<K, V> StructuralPartialEq for AssocMap<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for AssocMap<K, V>
impl<K, V> RefUnwindSafe for AssocMap<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for AssocMap<K, V>
impl<K, V> Sync for AssocMap<K, V>
impl<K, V> Unpin for AssocMap<K, V>
impl<K, V> UnwindSafe for AssocMap<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more