[][src]Trait join_impl::expr_chain::unit::TransformParsed

pub trait TransformParsed<T, R> {
    type To;
    fn transform_parsed<F>(self, transform: F) -> Self::To
    where
        F: FnOnce(T) -> R
; }

Trait which provides functionality to apply given transform function to change result from Self (<T>) to To (<R>) where transform: F: FnOnce(T) -> R.

Associated Types

type To

Loading content...

Required methods

fn transform_parsed<F>(self, transform: F) -> Self::To where
    F: FnOnce(T) -> R, 

Transforms Self to To using transform function.

Loading content...

Implementors

impl<T, R> TransformParsed<T, R> for UnitResult<T>[src]

type To = UnitResult<R>

Loading content...