pub struct TypeMap(_);
Expand description

A map where the key is the type of the value.

Implementations

Creates an empty TypeMap.

The map is initially created with a capacity of 0, so it will not allocate until it is first inserted into.

Examples
use static_type_map::TypeMap;

let type_map = TypeMap::new();

Creates an empty TypeMap with the specified capacity.

The map will be able to hold at least capacity types without reallocating. If capacity is 0, the static type map will not allocate.

Examples
use static_type_map::TypeMap;

let type_map = TypeMap::with_capacity(10);

Returns the number of types the map can hold without reallocating.

This number is a lower bound; the map might be able to hold more, but it is guaranteed to be able to hold at least so many.

Examples
use static_type_map::TypeMap;

let type_map = TypeMap::with_capacity(100);
assert!(type_map.capacity() >= 100);

Returns true if the map contains no instances of any type.

Examples
use static_type_map::TypeMap;

let type_map = TypeMap::new();
assert!(type_map.is_empty());

Returns the number of types in the map.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
assert_eq!(type_map.len(), 0);
type_map.insert("a");
assert_eq!(type_map.len(), 1);

Clears the map. Keep allocated memory for reuse.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
type_map.insert("a");
type_map.clear();
assert!(type_map.is_empty());

Reserves capacity for at least additional more types to be inserted in the map. The collection may reserve more space to avoid frequent reallocations.

Panics

Panics if the new allocation size overflows usize.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
assert_eq!(type_map.capacity(), 0);
type_map.reserve(10);
assert!(type_map.capacity() >= 10);

Shrinks the capacity of the map as much as possible. It will drop down as much as possible while mainting the internal rules and possibly leaving some space in accordance with the resize policy.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::with_capacity(100);
assert!(type_map.capacity() >= 0);
type_map.insert("a");
type_map.insert(true);
assert!(type_map.capacity() >= 2);

Returns true if the map contains an instance of T.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
type_map.insert("a");
assert!(type_map.contains::<&str>());

Returns a reference to an instance of T.

If the map does not have an instance of T, None is returned.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
type_map.insert("a");
assert_eq!(type_map.get::<&str>(), Some(&"a"));
assert_eq!(type_map.get::<bool>(), None);

Returns a mutable reference to an instance of T.

If the map does not have an instance of T, None is returned.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
type_map.insert("a");
if let Some(x) = type_map.get_mut::<&str>() {
    *x = "b";
}
assert_eq!(type_map.get::<&str>(), Some(&"b"));

Insert an instance of type T into the map.

If the map did not have this type present, None is returned.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
assert_eq!(type_map.insert("a"), None);
assert_eq!(type_map.insert("b"), Some("a"));

Remove and return an instance of type T from the map.

If the map did not have this type present, None is returned.

Examples
use static_type_map::TypeMap;

let mut type_map = TypeMap::new();
type_map.insert("a");
assert_eq!(type_map.remove::<&str>(), Some("a"));

Trait Implementations

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.