[][src]Struct minutiae::action::OwnedAction

pub struct OwnedAction<C: CellState, E: EntityState<C>, CA: CellAction<C>, EA: EntityAction<C, E>> {
    pub source_entity_index: usize,
    pub source_uuid: Uuid,
    pub action: Action<C, E, CA, EA>,
}

An action that is associated with a particular entity

Fields

source_entity_index: usizesource_uuid: Uuidaction: Action<C, E, CA, EA>

Trait Implementations

impl<C: CellState, E: EntityState<C>, CA: CellAction<C>, EA: EntityAction<C, E>> Clone for OwnedAction<C, E, CA, EA> where
    Action<C, E, CA, EA>: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<C: Debug + CellState, E: Debug + EntityState<C>, CA: Debug + CellAction<C>, EA: Debug + EntityAction<C, E>> Debug for OwnedAction<C, E, CA, EA>[src]

Auto Trait Implementations

impl<C, E, CA, EA> Send for OwnedAction<C, E, CA, EA> where
    C: Send,
    CA: Send,
    E: Send,
    EA: Send

impl<C, E, CA, EA> Unpin for OwnedAction<C, E, CA, EA> where
    C: Unpin,
    CA: Unpin,
    E: Unpin,
    EA: Unpin

impl<C, E, CA, EA> Sync for OwnedAction<C, E, CA, EA> where
    C: Sync,
    CA: Sync,
    E: Sync,
    EA: Sync

impl<C, E, CA, EA> UnwindSafe for OwnedAction<C, E, CA, EA> where
    C: UnwindSafe,
    CA: UnwindSafe,
    E: UnwindSafe,
    EA: UnwindSafe

impl<C, E, CA, EA> RefUnwindSafe for OwnedAction<C, E, CA, EA> where
    C: RefUnwindSafe,
    CA: RefUnwindSafe,
    E: RefUnwindSafe,
    EA: RefUnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.