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 ip_address;
#[allow(unused_imports)]
pub use self::ip_address::IPAddressAc;
mod ip_address_spec;
#[allow(unused_imports)]
pub use self::ip_address_spec::IPAddressSpecAc;
mod parent_reference;
#[allow(unused_imports)]
pub use self::parent_reference::ParentReferenceAc;
mod service_cidr;
#[allow(unused_imports)]
pub use self::service_cidr::ServiceCIDRAc;
mod service_cidr_spec;
#[allow(unused_imports)]
pub use self::service_cidr_spec::ServiceCIDRSpecAc;
mod service_cidr_status;
#[allow(unused_imports)]
pub use self::service_cidr_status::ServiceCIDRStatusAc;