Trait MutationExt

Source
pub trait MutationExt<T>: Mutation<T>
where T: Mutable,
{ // Provided method fn then<N>(self, after: N) -> Then<Self, N> where Self: Sized, N: Mutation<T> { ... } }

Provided Methods§

Source

fn then<N>(self, after: N) -> Then<Self, N>
where Self: Sized, N: Mutation<T>,

Implementors§

Source§

impl<M, T> MutationExt<T> for M
where T: Mutable, M: Mutation<T>,