Struct bones_lib::prelude::bones_schema::alloc::SchemaMap
pub struct SchemaMap { /* private fields */ }
Expand description
Untyped schema-aware “HashMap”.
Implementations§
§impl SchemaMap
impl SchemaMap
pub fn new(
key_schema: &'static Schema,
value_schema: &'static Schema,
) -> SchemaMap
pub fn new( key_schema: &'static Schema, value_schema: &'static Schema, ) -> SchemaMap
Create a new map, with the given key and value schemas.
pub fn key_schema(&self) -> &'static Schema
pub fn key_schema(&self) -> &'static Schema
Get the schema for the map keys.
pub fn value_schema(&self) -> &'static Schema
pub fn value_schema(&self) -> &'static Schema
Get the schema for the map values.
pub fn try_insert<K, V>(
&mut self,
key: K,
value: V,
) -> Result<Option<V>, SchemaMismatchError>
pub fn try_insert<K, V>( &mut self, key: K, value: V, ) -> Result<Option<V>, SchemaMismatchError>
pub fn insert_box(
&mut self,
key: SchemaBox,
value: SchemaBox,
) -> Option<SchemaBox>
pub fn insert_box( &mut self, key: SchemaBox, value: SchemaBox, ) -> Option<SchemaBox>
Insert an untyped item into the map.
§Panics
Panics if the key or value schemas do not match the map’s.
pub fn try_insert_box(
&mut self,
key: SchemaBox,
value: SchemaBox,
) -> Result<Option<SchemaBox>, SchemaMismatchError>
pub fn try_insert_box( &mut self, key: SchemaBox, value: SchemaBox, ) -> Result<Option<SchemaBox>, SchemaMismatchError>
Insert an untyped item into the map.
§Errors
Errors if the key or value schemas do not match the map’s.
pub unsafe fn insert_box_unchecked(
&mut self,
key: SchemaBox,
value: SchemaBox,
) -> Option<SchemaBox>
pub unsafe fn insert_box_unchecked( &mut self, key: SchemaBox, value: SchemaBox, ) -> Option<SchemaBox>
§Safety
Key schema and value schema must match the map’s.
pub fn get<K, V>(&self, key: &K) -> Option<&V>
pub fn get<K, V>(&self, key: &K) -> Option<&V>
Get a value out of the map for the given key.
§Panics
Panics if the schemas of the key and value don’t match the schemas of the map.
pub fn try_get<K, V>(&self, key: &K) -> Result<Option<&V>, SchemaMismatchError>
pub fn try_get<K, V>(&self, key: &K) -> Result<Option<&V>, SchemaMismatchError>
Get a value out of the map for the given key.
§Errors
Errors if the schemas of the key and value don’t match the schemas of the map.
pub fn get_ref(&self, key: SchemaRef<'_>) -> Option<SchemaRef<'_>>
pub fn get_ref(&self, key: SchemaRef<'_>) -> Option<SchemaRef<'_>>
Get an untyped reference to an item in the map.
§Panics
Panics if the schema of the key doesn’t match.
pub fn try_get_ref(
&self,
key: SchemaRef<'_>,
) -> Result<Option<SchemaRef<'_>>, SchemaMismatchError>
pub fn try_get_ref( &self, key: SchemaRef<'_>, ) -> Result<Option<SchemaRef<'_>>, SchemaMismatchError>
Get an untyped reference to an item in the map.
§Errors
Errors if the schema of the key doesn’t match.
pub unsafe fn get_ref_unchecked(
&self,
key: SchemaRef<'_>,
) -> Option<SchemaRef<'_>>
pub unsafe fn get_ref_unchecked( &self, key: SchemaRef<'_>, ) -> Option<SchemaRef<'_>>
§Safety
The key’s schema must match this map’s key schema.
pub fn get_ref_mut(&mut self, key: SchemaRef<'_>) -> Option<SchemaRefMut<'_>>
pub fn get_ref_mut(&mut self, key: SchemaRef<'_>) -> Option<SchemaRefMut<'_>>
Get an untyped reference to an item in the map.
§Panics
Panics if the schema of the key doesn’t match.
pub fn try_get_ref_mut(
&mut self,
key: SchemaRef<'_>,
) -> Result<Option<SchemaRefMut<'_>>, SchemaMismatchError>
pub fn try_get_ref_mut( &mut self, key: SchemaRef<'_>, ) -> Result<Option<SchemaRefMut<'_>>, SchemaMismatchError>
Get an untyped reference to an item in the map.
§Errors
Errors if the schema of the key doesn’t match.
pub unsafe fn get_ref_unchecked_mut(
&mut self,
key: SchemaRef<'_>,
) -> Option<SchemaRefMut<'_>>
pub unsafe fn get_ref_unchecked_mut( &mut self, key: SchemaRef<'_>, ) -> Option<SchemaRefMut<'_>>
§Safety
The key’s schema must match this map’s key schema.
pub fn get_mut<K, V>(&mut self, key: &K) -> Option<&mut V>
pub fn get_mut<K, V>(&mut self, key: &K) -> Option<&mut V>
Get a value out of the map for the given key.
§Panics
Panics if the schemas of the key and value don’t match the schemas of the map.
pub fn try_get_mut<K, V>(
&mut self,
key: &K,
) -> Result<Option<&mut V>, SchemaMismatchError>
pub fn try_get_mut<K, V>( &mut self, key: &K, ) -> Result<Option<&mut V>, SchemaMismatchError>
Get a value out of the map for the given key.
§Errors
Errors if the schemas of the key and value don’t match the schemas of the map.
pub fn try_remove<K, V>(
&mut self,
key: &K,
) -> Result<Option<V>, SchemaMismatchError>
pub fn try_remove<K, V>( &mut self, key: &K, ) -> Result<Option<V>, SchemaMismatchError>
pub fn remove_box(&mut self, key: SchemaRef<'_>) -> Option<SchemaBox>
pub fn remove_box(&mut self, key: SchemaRef<'_>) -> Option<SchemaBox>
pub fn try_remove_box(
&mut self,
key: SchemaRef<'_>,
) -> Result<Option<SchemaBox>, SchemaMismatchError>
pub fn try_remove_box( &mut self, key: SchemaRef<'_>, ) -> Result<Option<SchemaBox>, SchemaMismatchError>
pub unsafe fn remove_unchecked(
&mut self,
key: SchemaRef<'_>,
) -> Option<SchemaBox>
pub unsafe fn remove_unchecked( &mut self, key: SchemaRef<'_>, ) -> Option<SchemaBox>
§Safety
The key schema must match the map’s.
pub fn try_into_smap<K, V>(self) -> Result<SMap<K, V>, SchemaMismatchError>
pub fn try_into_smap<K, V>(self) -> Result<SMap<K, V>, SchemaMismatchError>
§impl SchemaMap
impl SchemaMap
pub fn iter(
&self,
) -> Map<Iter<'_, SchemaBox, SchemaBox>, for<'a> fn(_: (&'a SchemaBox, &'a SchemaBox)) -> (SchemaRef<'a>, SchemaRef<'a>)> ⓘ
pub fn iter( &self, ) -> Map<Iter<'_, SchemaBox, SchemaBox>, for<'a> fn(_: (&'a SchemaBox, &'a SchemaBox)) -> (SchemaRef<'a>, SchemaRef<'a>)> ⓘ
Iterate over entries in the map.
pub fn iter_mut(
&mut self,
) -> Map<IterMut<'_, SchemaBox, SchemaBox>, for<'a> fn(_: (&'a SchemaBox, &'a mut SchemaBox)) -> (SchemaRef<'a>, SchemaRefMut<'a>)> ⓘ
pub fn iter_mut( &mut self, ) -> Map<IterMut<'_, SchemaBox, SchemaBox>, for<'a> fn(_: (&'a SchemaBox, &'a mut SchemaBox)) -> (SchemaRef<'a>, SchemaRefMut<'a>)> ⓘ
Iterate over entries in the map.
pub fn keys(
&self,
) -> Map<Keys<'_, SchemaBox, SchemaBox>, for<'a> fn(_: &'a SchemaBox) -> SchemaRef<'a>> ⓘ
pub fn keys( &self, ) -> Map<Keys<'_, SchemaBox, SchemaBox>, for<'a> fn(_: &'a SchemaBox) -> SchemaRef<'a>> ⓘ
Iterate over keys in the map.
pub fn values(
&self,
) -> Map<Values<'_, SchemaBox, SchemaBox>, for<'a> fn(_: &'a SchemaBox) -> SchemaRef<'a>> ⓘ
pub fn values( &self, ) -> Map<Values<'_, SchemaBox, SchemaBox>, for<'a> fn(_: &'a SchemaBox) -> SchemaRef<'a>> ⓘ
Iterate over values in the map.
pub fn values_mut(
&mut self,
) -> Map<ValuesMut<'_, SchemaBox, SchemaBox>, for<'a> fn(_: &'a mut SchemaBox) -> SchemaRefMut<'a>> ⓘ
pub fn values_mut( &mut self, ) -> Map<ValuesMut<'_, SchemaBox, SchemaBox>, for<'a> fn(_: &'a mut SchemaBox) -> SchemaRefMut<'a>> ⓘ
Iterate over values in the map.
Trait Implementations§
§impl<'a> IntoIterator for &'a SchemaMap
impl<'a> IntoIterator for &'a SchemaMap
§impl<'a> IntoIterator for &'a mut SchemaMap
impl<'a> IntoIterator for &'a mut SchemaMap
Auto Trait Implementations§
impl Freeze for SchemaMap
impl !RefUnwindSafe for SchemaMap
impl Send for SchemaMap
impl Sync for SchemaMap
impl Unpin for SchemaMap
impl !UnwindSafe for SchemaMap
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)