[][src]Struct fui_core::Callback

pub struct Callback<A> { /* fields omitted */ }

Callback can hold one listener that can be queued to execute with emit() method. The real execution will be done later on the same thread (you must explicitly call CallbackExecutor::execute_all_in_queue() to do it). Callbacks are queued because this prevents mutability problems when callbacks are called from callbacks.

Callback is the owner of the listener clousure.

Implementations

impl<A: 'static + Clone> Callback<A>[src]

pub fn empty() -> Self[src]

pub fn new<T: 'static, F: 'static + Fn(&mut T, A)>(
    vm: &Rc<RefCell<T>>,
    f: F
) -> Self
[src]

pub fn new_rc<T: 'static, F: 'static + Fn(Rc<RefCell<T>>, A)>(
    vm: &Rc<RefCell<T>>,
    f: F
) -> Self
[src]

pub fn set<F: 'static + Fn(A)>(&mut self, f: F)[src]

pub fn set_vm<T: 'static, F: 'static + Fn(&mut T, A)>(
    &mut self,
    vm: &Rc<RefCell<T>>,
    f: F
)
[src]

pub fn clear(&mut self)[src]

pub fn emit(&self, args: A)[src]

Trait Implementations

impl<A> CallbackObject for Callback<A>[src]

impl<A: Clone> Clone for Callback<A>[src]

Auto Trait Implementations

impl<A> !RefUnwindSafe for Callback<A>

impl<A> !Send for Callback<A>

impl<A> !Sync for Callback<A>

impl<A> Unpin for Callback<A>

impl<A> !UnwindSafe for Callback<A>

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> CloneAny for T where
    T: Clone + Any
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> UnsafeAny for T where
    T: Any