Struct r3::bind::FnBindMap

source ·
pub struct FnBindMap<Inner, Mapper> { /* private fields */ }
Expand description

Applies a function to a FnBind’s output.

Created by fn_bind_map.

Trait Implementations§

source§

impl<Binder, Inner, InnerBoundFn, Output, Mapper, NewOutput> FnBind<Binder> for FnBindMap<Inner, Mapper>where Inner: FnBind<Binder, Output = Output, BoundFn = InnerBoundFn>, InnerBoundFn: FnOnce() -> Output + Copy + Send + 'static, Output: 'static, Mapper: FnOnce(Output) -> NewOutput + Copy + Send + 'static, NewOutput: 'static,

§

type Output = NewOutput

§

type BoundFn = impl FnOnce() -> NewOutput + Copy + Send + 'static

source§

const fn bind( self, binder: Binder, ctx: &mut CfgBindCtx<'_> ) -> <FnBindMap<Inner, Mapper> as FnBind<Binder>>::BoundFn

Auto Trait Implementations§

§

impl<Inner, Mapper> RefUnwindSafe for FnBindMap<Inner, Mapper>where Inner: RefUnwindSafe, Mapper: RefUnwindSafe,

§

impl<Inner, Mapper> Send for FnBindMap<Inner, Mapper>where Inner: Send, Mapper: Send,

§

impl<Inner, Mapper> Sync for FnBindMap<Inner, Mapper>where Inner: Sync, Mapper: Sync,

§

impl<Inner, Mapper> Unpin for FnBindMap<Inner, Mapper>where Inner: Unpin, Mapper: Unpin,

§

impl<Inner, Mapper> UnwindSafe for FnBindMap<Inner, Mapper>where Inner: UnwindSafe, Mapper: UnwindSafe,

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.