Struct Handler

Source
pub struct Handler<'f, A: Clone, B: Clone, U: Clone, V: Clone>(/* private fields */);

Implementations§

Source§

impl<'f, A: Clone, B: Clone, U: Clone, V: Clone> Handler<'f, A, B, U, V>

Source

pub fn on_left<S: Clone>(self) -> Handler<'f, (A, S), (B, S), U, V>

Source

pub fn on_right<S: Clone>(self) -> Handler<'f, (S, A), (S, B), U, V>

Source

pub fn on_value<S: Clone>(self) -> Handler<'f, S, S, Fx<'f, A, U>, Fx<'f, B, V>>

Source§

impl<'f, A: Clone, B: Clone, U: Clone, V: Clone> Handler<'f, A, B, U, V>

Source

pub fn new<F>(f: F) -> Self
where F: FnOnce(Fx<'f, A, U>) -> Fx<'f, B, V> + Clone + 'f,

Source

pub fn handle(self, e: Fx<'f, A, U>) -> Fx<'f, B, V>

Source

pub fn clone_boxed(&self) -> Box<dyn FnOnce(Fx<'f, A, U>) -> Fx<'f, B, V> + 'f>

Source

pub fn contra_map<S, T, H>(self, h: H) -> Handler<'f, S, B, T, V>
where H: FnOnce(Fx<'f, S, T>) -> Fx<'f, A, U> + Clone + 'f, S: Clone, T: Clone,

Source

pub fn map<S, T, H>(self, h: H) -> Handler<'f, A, S, U, T>
where H: FnOnce(Fx<'f, B, V>) -> Fx<'f, S, T> + Clone + 'f, S: Clone, T: Clone,

Trait Implementations§

Source§

impl<'f, A: Clone + Clone, B: Clone + Clone, U: Clone + Clone, V: Clone + Clone> Clone for Handler<'f, A, B, U, V>

Source§

fn clone(&self) -> Handler<'f, A, B, U, V>

Returns a duplicate 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<'f, A, B, U, V, F> From<F> for Handler<'f, A, B, U, V>
where F: FnOnce(Fx<'f, A, U>) -> Fx<'f, B, V> + Clone + 'f, V: Clone + 'f, U: Clone + 'f, A: Clone + 'f, B: Clone + 'f,

Source§

fn from(value: F) -> Self

Converts to this type from the input type.
Source§

impl<'f, A, B, U, V> From<Handler<'f, A, B, U, V>> for Box<dyn HandlerFn<'f, A, B, U, V> + 'f>
where V: Clone + 'f, U: Clone + 'f, A: Clone + 'f, B: Clone + 'f,

Source§

fn from(value: Handler<'f, A, B, U, V>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'f, A, B, U, V> Freeze for Handler<'f, A, B, U, V>

§

impl<'f, A, B, U, V> !RefUnwindSafe for Handler<'f, A, B, U, V>

§

impl<'f, A, B, U, V> !Send for Handler<'f, A, B, U, V>

§

impl<'f, A, B, U, V> !Sync for Handler<'f, A, B, U, V>

§

impl<'f, A, B, U, V> Unpin for Handler<'f, A, B, U, V>

§

impl<'f, A, B, U, V> !UnwindSafe for Handler<'f, A, B, U, V>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where 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> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.