Trait Status

Source
pub trait Status {
    // 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§