pub trait UpdateDerived: Named {
    type Input<'a>
       where Self: 'a;
    type Target<'a>
       where Self: 'a;

    // Required method
    fn update_derived(
        input: Self::Input<'_>,
        target: Self::Target<'_>
    ) -> Result<(), EarlyExit>;
}

Required Associated Types§

source

type Input<'a> where Self: 'a

source

type Target<'a> where Self: 'a

Required Methods§

source

fn update_derived( input: Self::Input<'_>, target: Self::Target<'_> ) -> Result<(), EarlyExit>

Object Safety§

This trait is not object safe.

Implementors§