pub trait HasPartial {
type Partial;
// Required method
fn merge_partial(self, partial: Self::Partial) -> Self;
}Expand description
This is implemented on the “Full” struct.
Required Associated Types§
Required Methods§
fn merge_partial(self, partial: Self::Partial) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.