soroban_env_host

Struct MeteredOrdMap

Source
pub struct MeteredOrdMap<K, V, Ctx> { /* private fields */ }

Implementations§

Source§

impl<K, V, Ctx> MeteredOrdMap<K, V, Ctx>
where K: MeteredClone, V: MeteredClone, Ctx: AsBudget + Compare<K, Error = HostError>,

Source

pub fn new() -> Self

Source

pub fn from_map(map: Vec<(K, V)>, ctx: &Ctx) -> Result<Self, HostError>

Source

pub fn from_exact_iter<I: Iterator<Item = (K, V)>>( iter: I, ctx: &Ctx, ) -> Result<Self, HostError>

Source

pub fn insert(&self, key: K, value: V, ctx: &Ctx) -> Result<Self, HostError>

Source

pub fn get<Q>(&self, key: &Q, ctx: &Ctx) -> Result<Option<&V>, HostError>
where K: Borrow<Q>, Ctx: Compare<Q, Error = HostError>,

Source

pub fn get_at_index( &self, index: usize, ctx: &Ctx, ) -> Result<&(K, V), HostError>

Source

pub fn remove<Q>( &self, key: &Q, ctx: &Ctx, ) -> Result<Option<(Self, V)>, HostError>
where K: Borrow<Q>, Ctx: Compare<Q, Error = HostError>,

Returns a Some((new_self, val)) pair where new_self no longer contains an entry for key, if the key existed, otherwise None if key didn’t exist (in which case there’s no need to clone).

Source

pub fn len(&self) -> usize

Source

pub fn contains_key<Q>(&self, key: &Q, ctx: &Ctx) -> Result<bool, HostError>
where K: Borrow<Q>, Ctx: Compare<Q, Error = HostError>,

Source

pub fn keys(&self, ctx: &Ctx) -> Result<impl Iterator<Item = &K>, HostError>

Source

pub fn values(&self, ctx: &Ctx) -> Result<impl Iterator<Item = &V>, HostError>

Source

pub fn iter( &self, ctx: &Ctx, ) -> Result<impl Iterator<Item = &(K, V)>, HostError>

Trait Implementations§

Source§

impl<K, V, Ctx> Clone for MeteredOrdMap<K, V, Ctx>
where K: MeteredClone, V: MeteredClone, Ctx: AsBudget,

Clone should not be used directly, used MeteredClone instead if possible. Clone is defined here to satisfy trait requirements.

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<K, V> Compare<MeteredOrdMap<K, V, Budget>> for Budget
where K: DeclaredSizeForMetering, V: DeclaredSizeForMetering, Budget: Compare<K, Error = HostError> + Compare<V, Error = HostError>,

Source§

type Error = HostError

Source§

fn compare( &self, a: &MeteredOrdMap<K, V, Budget>, b: &MeteredOrdMap<K, V, Budget>, ) -> Result<Ordering, Self::Error>

Source§

impl<K, V> Compare<MeteredOrdMap<K, V, Host>> for Host
where K: DeclaredSizeForMetering, V: DeclaredSizeForMetering, Host: Compare<K, Error = HostError> + Compare<V, Error = HostError>,

Source§

type Error = HostError

Source§

fn compare( &self, a: &MeteredOrdMap<K, V, Host>, b: &MeteredOrdMap<K, V, Host>, ) -> Result<Ordering, Self::Error>

Source§

impl<K, V, Ctx> Default for MeteredOrdMap<K, V, Ctx>
where Ctx: Default,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<K, V, Ctx> Hash for MeteredOrdMap<K, V, Ctx>
where K: Hash, V: Hash,

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a, K, V, Ctx> IntoIterator for &'a MeteredOrdMap<K, V, Ctx>

Source§

type Item = &'a (K, V)

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, (K, V)>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<K, V, Ctx> IntoIterator for MeteredOrdMap<K, V, Ctx>

Source§

type Item = (K, V)

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<(K, V)>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<K, V, Ctx> Freeze for MeteredOrdMap<K, V, Ctx>

§

impl<K, V, Ctx> RefUnwindSafe for MeteredOrdMap<K, V, Ctx>

§

impl<K, V, Ctx> Send for MeteredOrdMap<K, V, Ctx>
where Ctx: Send, K: Send, V: Send,

§

impl<K, V, Ctx> Sync for MeteredOrdMap<K, V, Ctx>
where Ctx: Sync, K: Sync, V: Sync,

§

impl<K, V, Ctx> Unpin for MeteredOrdMap<K, V, Ctx>
where Ctx: Unpin, K: Unpin, V: Unpin,

§

impl<K, V, Ctx> UnwindSafe for MeteredOrdMap<K, V, Ctx>
where Ctx: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T, C> Compare<&T> for C
where C: Compare<T>,

Source§

type Error = <C as Compare<T>>::Error

Source§

fn compare(&self, a: &&T, b: &&T) -> Result<Ordering, <C as Compare<&T>>::Error>

Source§

impl<T, U, E, C> Compare<(T, U)> for C
where C: Compare<T, Error = E, Error = E> + Compare<U>,

Source§

type Error = E

Source§

fn compare( &self, a: &(T, U), b: &(T, U), ) -> Result<Ordering, <C as Compare<(T, U)>>::Error>

Source§

impl<T, U, V, E, C> Compare<(T, U, V)> for C
where C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,

Source§

impl<T, U, V, W, E, C> Compare<(T, U, V, W)> for C
where C: Compare<T, Error = E, Error = E, Error = E, Error = E> + Compare<U> + Compare<V> + Compare<W>,

Source§

impl<T, U, V, W, X, E, C> Compare<(T, U, V, W, X)> for C
where C: Compare<T, Error = E, Error = E, Error = E, Error = E, Error = E> + Compare<U> + Compare<V> + Compare<W> + Compare<X>,

Source§

impl<T, C> Compare<Box<T>> for C
where C: Compare<T>,

Source§

type Error = <C as Compare<T>>::Error

Source§

fn compare( &self, a: &Box<T>, b: &Box<T>, ) -> Result<Ordering, <C as Compare<Box<T>>>::Error>

Source§

impl<T, C> Compare<Option<T>> for C
where C: Compare<T>,

Source§

type Error = <C as Compare<T>>::Error

Source§

fn compare( &self, a: &Option<T>, b: &Option<T>, ) -> Result<Ordering, <C as Compare<Option<T>>>::Error>

Source§

impl<T, C> Compare<Rc<T>> for C
where C: Compare<T>,

Source§

type Error = <C as Compare<T>>::Error

Source§

fn compare( &self, a: &Rc<T>, b: &Rc<T>, ) -> Result<Ordering, <C as Compare<Rc<T>>>::Error>

Source§

impl<T, C> Compare<Vec<T>> for C
where C: Compare<T>,

Source§

type Error = <C as Compare<T>>::Error

Source§

fn compare( &self, a: &Vec<T>, b: &Vec<T>, ) -> Result<Ordering, <C as Compare<Vec<T>>>::Error>

Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<E, T, U> TryIntoVal<E, T> for U
where E: Env, T: TryFromVal<E, U>,

Source§

type Error = <T as TryFromVal<E, U>>::Error

Source§

fn try_into_val(&self, env: &E) -> Result<T, <U as TryIntoVal<E, T>>::Error>

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V