pub trait PatchStatus {
    // Required method
    fn is_empty(&self) -> bool;
}
Expand description

A patch struct with extra status information

Required Methods§

source

fn is_empty(&self) -> bool

Returns true if all fields are None, false otherwise.

Implementors§