pub struct NamedSerdeAnyMap { /* private fields */ }
Expand description

A serializable HashMap wrapper for crate::serdeany::SerdeAny types, addressable by name.

Implementations§

source§

impl NamedSerdeAnyMap

source

pub fn get<T>(&self, name: &str) -> Option<&T>
where T: SerdeAny,

Get an element by name

source

pub fn remove<T>(&mut self, name: &str) -> Option<Box<T>>
where T: SerdeAny,

Remove an element by type and name

source

pub fn get_mut<T>(&mut self, name: &str) -> Option<&mut T>
where T: SerdeAny,

Get an element of a given type contained in this map by type T, as mut.

source

pub fn get_all<T>( &self ) -> Option<Map<Values<'_, String, Box<dyn SerdeAny>>, fn(_: &Box<dyn SerdeAny>) -> &T>>
where T: SerdeAny,

Get all elements of a type contained in this map.

source

pub fn get_all_mut<T>( &mut self ) -> Option<Map<ValuesMut<'_, String, Box<dyn SerdeAny>>, fn(_: &mut Box<dyn SerdeAny>) -> &mut T>>
where T: SerdeAny,

Get all elements contained in this map, as mut.

source

pub fn for_each<F: FnMut(&TypeRepr, &Box<dyn SerdeAny>) -> Result<(), Error>>( &self, func: &mut F ) -> Result<(), Error>

Run func for each element in this map.

source

pub fn for_each_mut<F: FnMut(&TypeRepr, &mut Box<dyn SerdeAny>) -> Result<(), Error>>( &mut self, func: &mut F ) -> Result<(), Error>

Run func for each element in this map, getting a mutable borrow.

source

pub fn insert<T>(&mut self, name: &str, val: T)
where T: SerdeAny,

Insert an element into this map.

source

pub fn get_or_insert_with<T>( &mut self, name: &str, default: impl FnOnce() -> T ) -> &mut T
where T: SerdeAny,

Gets a value by name, or inserts it using the given construction function default

source

pub fn get_or_insert_with_boxed<T>( &mut self, name: &str, default: impl FnOnce() -> Box<T> ) -> &mut T
where T: SerdeAny + 'static,

Gets a value by name, or inserts it using the given construction function default (returning a boxed value)

source

pub fn len(&self) -> usize

Returns the len of this map.

source

pub fn is_empty(&self) -> bool

Returns true if this map is empty.

source

pub fn contains_type<T>(&self) -> bool
where T: SerdeAny,

Returns if the element with a given type is contained in this map.

source

pub fn contains<T>(&self, name: &str) -> bool
where T: SerdeAny,

Returns if the element by a given name is contained in this map.

source

pub fn new() -> Self

Create a new SerdeAny map.

Trait Implementations§

source§

impl Clone for NamedSerdeAnyMap

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 Debug for NamedSerdeAnyMap

source§

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

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

impl Default for NamedSerdeAnyMap

source§

fn default() -> Self

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

impl<'de> Deserialize<'de> for NamedSerdeAnyMap

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 Serialize for NamedSerdeAnyMap

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

Auto Trait Implementations§

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<Tail, T> Prepend<T> for Tail

§

type PreprendResult = Tail

The Resulting TupleList, of an Prepend::prepend() call, including the prepended entry.
source§

fn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)

Prepend a value to this tuple, returning a new tuple with prepended value.
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

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

§

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>,

§

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>,

§

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