[][src]Struct newt::callbacks::Callback

pub struct Callback<'a, FN: 'a, T: 'a> where
    FN: FnMut(Option<&dyn Component>, Option<&T>), 
{ /* fields omitted */ }

A callback called when a newt Component is activated.

Methods

impl<'a, FN: 'a, T: 'a> Callback<'a, FN, T> where
    FN: FnMut(Option<&dyn Component>, Option<&T>), 
[src]

pub fn new(
    component: &'a dyn Component,
    function: FN,
    data: Option<T>
) -> Box<Callback<'a, FN, T>>
[src]

Create a new Callback using the function or closure function and associate it with component.

  • component - The Component associated with the callback.
  • function - The function or closure to call when the Component is activated.
  • data - Optional user data to pass to the function.

pub fn add_component(&mut self, component: &'a dyn Component, data: Option<T>)[src]

Associate another component with the Callback.

  • component - Another Component to associate with the callback.
  • data - Optional user data to pass to the function.

Trait Implementations

impl<'a, FN: 'a, T: 'a> Drop for Callback<'a, FN, T> where
    FN: FnMut(Option<&dyn Component>, Option<&T>), 
[src]

Auto Trait Implementations

impl<'a, FN, T> !Send for Callback<'a, FN, T>

impl<'a, FN, T> !Sync for Callback<'a, FN, T>

Blanket Implementations

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

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

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