Skip to main content

NameMap

Struct NameMap 

Source
pub struct NameMap<K, V>
where K: TryClone + Hash + Eq + Ord,
{ /* private fields */ }
Expand description

A semver-aware map for imports/exports of a component.

This data structure is used when looking up the names of imports/exports of a component to enable semver-compatible matching of lookups. This will enable lookups of a:b/c@0.2.0 to match entries defined as a:b/c@0.2.1 which is currently considered a key feature of WASI’s compatibility story.

On the outside this looks like a map of K to V.

Implementations§

Source§

impl<K, V> NameMap<K, V>
where K: TryClone + Hash + Eq + Ord,

Source

pub fn insert<I>( &mut self, name: &str, cx: &mut I, allow_shadowing: bool, item: V, ) -> Result<K>
where I: NameMapIntern<Key = K>, I::BorrowedKey: Hash + Eq,

Inserts the name specified into this map.

The name is intern’d through the cx argument and shadowing is controlled by the allow_shadowing variable.

This function will automatically insert an entry in self.alternate_lookups if name is a semver-looking name.

Returns an error if allow_shadowing is false and the name is already present in this map (by exact match). Otherwise returns the intern’d version of name.

Source

pub fn get<I>(&self, name: &str, cx: &I) -> Option<&V>
where I: NameMapIntern<Key = K>, I::Key: Borrow<I::BorrowedKey>, I::BorrowedKey: Hash + Eq,

Looks up name within this map, using the interning specified by cx.

This may return a definition even if name wasn’t exactly defined in this map, such as looking up a:b/c@0.2.0 when the map only has a:b/c@0.2.1 defined.

Source

pub fn raw_iter(&self) -> impl Iterator<Item = (&K, &V)>

Returns an iterator over inserted values in this map.

Note that the iterator return yields intern’d keys and additionally does not do anything special with semver names and such, it only literally yields what’s been inserted with NameMap::insert.

Source

pub fn raw_get_mut(&mut self, key: &K) -> Option<&mut V>

TODO

Trait Implementations§

Source§

impl<K, V: Debug> Debug for NameMap<K, V>
where K: TryClone + Hash + Eq + Ord + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<K, V> Default for NameMap<K, V>
where K: TryClone + Hash + Eq + Ord,

Source§

fn default() -> NameMap<K, V>

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

impl<'de, K, V> Deserialize<'de> for NameMap<K, V>
where K: TryClone + Hash + Eq + Ord + Deserialize<'de>, V: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<K, V> Serialize for NameMap<K, V>
where K: TryClone + Hash + Eq + Ord + Serialize, V: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<K, V> TryClone for NameMap<K, V>
where K: TryClone + Hash + Eq + Ord, V: TryClone,

Source§

fn try_clone(&self) -> Result<Self, OutOfMemory>

Attempt to clone self, returning an error if any allocation fails during cloning.
§

fn clone_panic_on_oom(&self) -> Self

Clone self, panicking on allocation failure.

Auto Trait Implementations§

§

impl<K, V> Freeze for NameMap<K, V>

§

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

§

impl<K, V> Send for NameMap<K, V>
where K: Send, V: Send,

§

impl<K, V> Sync for NameMap<K, V>
where K: Sync, V: Sync,

§

impl<K, V> Unpin for NameMap<K, V>
where K: Unpin, V: Unpin,

§

impl<K, V> UnsafeUnpin for NameMap<K, V>

§

impl<K, V> UnwindSafe for NameMap<K, V>
where 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> 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, 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.
§

impl<T> TryToOwned for T
where T: TryClone,

§

type Owned = T

The owned version of this type.
§

fn try_to_owned(&self) -> Result<<T as TryToOwned>::Owned, OutOfMemory>

Try to allocate an owned version of self.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,