Trait Patch

Source
pub trait Patch<Target> {
    // Required method
    fn apply(self, target: Target) -> Target;
}
Expand description

A struct other structs can be patched with

Required Methods§

Source

fn apply(self, target: Target) -> Target

Apply self to target

Implementors§