[][src]Struct game_features::EffectorDefinitions

pub struct EffectorDefinitions<K, E: Hash + Eq> {
    pub defs: HashMap<E, EffectorDefinition<K, E>>,
}

Fields

defs: HashMap<E, EffectorDefinition<K, E>>

Implementations

impl<K, E: Hash + Eq> EffectorDefinitions<K, E>[src]

pub fn new(defs: HashMap<E, EffectorDefinition<K, E>>) -> Self[src]

Constructs a new EffectorDefinitions.

Trait Implementations

impl<K: Clone, E: Clone + Hash + Eq> Clone for EffectorDefinitions<K, E>[src]

impl<K: Debug, E: Debug + Hash + Eq> Debug for EffectorDefinitions<K, E>[src]

impl<'de, K, E: Hash + Eq> Deserialize<'de> for EffectorDefinitions<K, E> where
    K: Deserialize<'de>,
    E: Deserialize<'de>, 
[src]

impl<K: Hash + Eq + Clone, E: Hash + Eq + Clone> From<Vec<EffectorDefinition<K, E>>> for EffectorDefinitions<K, E>[src]

impl<K, E: Hash + Eq> Serialize for EffectorDefinitions<K, E> where
    K: Serialize,
    E: Serialize
[src]

Auto Trait Implementations

impl<K, E> RefUnwindSafe for EffectorDefinitions<K, E> where
    E: RefUnwindSafe,
    K: RefUnwindSafe

impl<K, E> Send for EffectorDefinitions<K, E> where
    E: Send,
    K: Send

impl<K, E> Sync for EffectorDefinitions<K, E> where
    E: Sync,
    K: Sync

impl<K, E> Unpin for EffectorDefinitions<K, E> where
    E: Unpin,
    K: Unpin

impl<K, E> UnwindSafe for EffectorDefinitions<K, E> where
    E: UnwindSafe,
    K: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.