pub enum Callback2<IN, OUT> {
    Callback2(Rc<dyn Fn(IN) -> OUT>),
    Callback2Once(Rc<RefCell<Option<Box<dyn FnOnce(IN) -> OUT>>>>),
}
Expand description

Universal closure wrapper.

An `Rc` wrapper is used to make it cloneable.

Variants§

§

Callback2(Rc<dyn Fn(IN) -> OUT>)

A closure which can be called multiple times

§

Callback2Once(Rc<RefCell<Option<Box<dyn FnOnce(IN) -> OUT>>>>)

A closure which can only be called once. The closure will panic if it is called more than once.

Implementations§

source§

impl<IN, OUT> Callback2<IN, OUT>

source

pub fn call(&self, value: IN) -> OUT

This method calls the closure’s function.

source

pub fn once<F>(func: F) -> Selfwhere F: FnOnce(IN) -> OUT + 'static,

Creates a closure from an FnOnce. The programmer is responsible for ensuring that the closure is only called once. If it is called more than once, the closure will panic.

source§

impl<IN, OUT: Default> Callback2<IN, OUT>

source

pub fn noop() -> Self

Creates a “no-op” closure which can be used when it is not suitable to use an Option<Lambda>.

source§

impl<IN: 'static, OUT: 'static> Callback2<IN, OUT>

source

pub fn reform<FI, FO, A, R>( &self, map_input: FI, map_output: FO ) -> Callback2<A, R>where FI: Fn(A) -> IN + 'static, FO: Fn(OUT) -> R + 'static,

Changes the input & output types of the closure to others. Works like the map method but in the opposite direction.

Trait Implementations§

source§

impl<IN, OUT> Clone for Callback2<IN, OUT>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<IN, OUT> Debug for Callback2<IN, OUT>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<IN, OUT: Default> Default for Callback2<IN, OUT>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<IN, OUT, F: Fn(IN) -> OUT + 'static> From<F> for Callback2<IN, OUT>

source§

fn from(func: F) -> Self

Converts to this type from the input type.
source§

impl<IN, OUT> PartialEq<Callback2<IN, OUT>> for Callback2<IN, OUT>

source§

fn eq(&self, other: &Callback2<IN, OUT>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<IN, OUT> ImplicitClone for Callback2<IN, OUT>

Auto Trait Implementations§

§

impl<IN, OUT> !RefUnwindSafe for Callback2<IN, OUT>

§

impl<IN, OUT> !Send for Callback2<IN, OUT>

§

impl<IN, OUT> !Sync for Callback2<IN, OUT>

§

impl<IN, OUT> Unpin for Callback2<IN, OUT>

§

impl<IN, OUT> !UnwindSafe for Callback2<IN, OUT>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoPropValue<Option<T>> for T

source§

fn into_prop_value(self) -> Option<T>

Convert self to a value of a Properties struct.
source§

impl<T> IntoPropValue<T> for T

source§

fn into_prop_value(self) -> T

Convert self to a value of a Properties struct.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> CloneAny for Twhere T: Any + Clone,