[][src]Struct salsa::Event

pub struct Event<DB: Database> {
    pub runtime_id: RuntimeId,
    pub kind: EventKind<DB>,
}

The Event struct identifies various notable things that can occur during salsa execution. Instances of this struct are given to salsa_event.

Fields

runtime_id: RuntimeId

The id of the snapshot that triggered the event. Usually 1-to-1 with a thread, as well.

kind: EventKind<DB>

What sort of event was it.

Trait Implementations

impl<DB: Database> Debug for Event<DB>[src]

Auto Trait Implementations

impl<DB> Send for Event<DB> where
    <DB as DatabaseStorageTypes>::DatabaseKey: Send

impl<DB> Sync for Event<DB> where
    <DB as DatabaseStorageTypes>::DatabaseKey: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T