pub trait Patch<P>where
    P: Default,
{ fn apply(&mut self, patch: P); fn default_patch() -> P { ... } }

Required Methods§

apply the patch, only update the existing fields

Provided Methods§

get an empty patch instance

Implementors§