pub trait MutexSyncOpsWithInteriorMutability {
    type ModifyInput;
    type ModifyOutput;

    // Required method
    fn modify(&self, input: Self::ModifyInput) -> Self::ModifyOutput;
}

Required Associated Types§

Required Methods§

source

fn modify(&self, input: Self::ModifyInput) -> Self::ModifyOutput

Implementors§