[][src]Struct orbtk::prelude::api::EventBox

pub struct EventBox {
    pub source: Entity,
    pub strategy: EventStrategy,
    // some fields omitted
}

Fields

source: Entitystrategy: EventStrategy

Methods

impl EventBox[src]

pub fn new<E>(event: E, strategy: EventStrategy, source: Entity) -> EventBox where
    E: Event
[src]

pub fn is_type<E>(&self) -> bool where
    E: Event
[src]

pub fn event_type(&self) -> TypeId[src]

pub fn downcast<E>(self) -> Result<E, EventError> where
    E: Event
[src]

pub fn downcast_ref<E>(&self) -> Result<&E, EventError> where
    E: Any
[src]

Trait Implementations

impl Debug for EventBox[src]

Auto Trait Implementations

impl !Send for EventBox

impl !Sync for EventBox

impl Unpin for EventBox

impl !UnwindSafe for EventBox

impl !RefUnwindSafe for EventBox

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<E> Component for E where
    E: Any
[src]

impl<T> SetParameter for T