pub trait EguiStructEq {
// Provided method
fn eguis_eq(&self, _rhs: &Self) -> bool { ... }
}Expand description
Similar to std PartialEq trait, but they respect #[eguis(skip)].
Necessary to implement EguiStruct. Used to provide reset functionality (if reset is not used, may be blank impl).
If type is PartialEq can be implemented with impl_eeq!/impl_eeqclone!.
Provided Methods§
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.