patchable 0.5.9

Automatically derive patch types for Rust structs to enable efficient partial updates with zero runtime overhead
Documentation
1
2
3
4
5
6
7
8
9
use patchable::Patchable;

#[derive(Patchable)]
struct InvalidNestedPatchableType<T> {
    #[patchable]
    value: Option<T>,
}

fn main() {}