pub trait MaybeNone { // Required method fn is_none(&self) -> bool; }
This is implemented on the “Partial” struct. Provides a method to check whether all fields are None.
Check if all fields are None.