[][src]Struct agent_safety_layers::AgentS

pub struct AgentS<M, A, D> {
    pub core: AgentN<M, A, D>,
}

Stores a successor agent.

Fields

core: AgentN<M, A, D>

The core sub-agent.

Trait Implementations

impl<M, A, D> Agent for AgentS<M, A, D> where
    A: PartialEq
[src]

type Model = M

The type of the model.

type Action = A

The type of actions.

type Delta = D

The type of delta changes (caused by mutation).

Auto Trait Implementations

impl<M, A, D> RefUnwindSafe for AgentS<M, A, D> where
    M: RefUnwindSafe

impl<M, A, D> Send for AgentS<M, A, D> where
    M: Send

impl<M, A, D> Sync for AgentS<M, A, D> where
    M: Sync

impl<M, A, D> Unpin for AgentS<M, A, D> where
    M: Unpin

impl<M, A, D> UnwindSafe for AgentS<M, A, D> where
    M: 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> 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.