optionable 0.14.0

Derive macro (and associated marker trait) to derive nested structs/enums with all subfields being optional (e.g. for patches or Kubernetes server side apply).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod endpoint;
#[allow(unused_imports)]
pub use self::endpoint::EndpointAc;
mod endpoint_conditions;
#[allow(unused_imports)]
pub use self::endpoint_conditions::EndpointConditionsAc;
mod endpoint_hints;
#[allow(unused_imports)]
pub use self::endpoint_hints::EndpointHintsAc;
mod endpoint_port;
#[allow(unused_imports)]
pub use self::endpoint_port::EndpointPortAc;
mod endpoint_slice;
#[allow(unused_imports)]
pub use self::endpoint_slice::EndpointSliceAc;
mod for_zone;
#[allow(unused_imports)]
pub use self::for_zone::ForZoneAc;