pub trait HasPartial {
    type Partial: PartialObject<Full = Self>;
}
Expand description

Implemented for objects that a partial object variant exists for

Required Associated Types§

The type representing the partial variant of this object

Implementors§