[][src]Struct dep_obj::OnRaised

pub struct OnRaised<OwnerId: ComponentId, ArgsType>(_, _);

Implementations

impl<OwnerId: ComponentId, ArgsType> OnRaised<OwnerId, ArgsType>[src]

pub fn raise(
    self,
    context: &mut dyn Context,
    owner_id: OwnerId,
    args: &mut ArgsType
)
[src]

Auto Trait Implementations

impl<OwnerId, ArgsType> Send for OnRaised<OwnerId, ArgsType> where
    ArgsType: Send,
    OwnerId: Send

impl<OwnerId, ArgsType> Sync for OnRaised<OwnerId, ArgsType> where
    ArgsType: Sync,
    OwnerId: Sync

impl<OwnerId, ArgsType> Unpin for OnRaised<OwnerId, ArgsType> where
    ArgsType: Unpin,
    OwnerId: Unpin

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,