pub trait GridCell {
// Required methods
fn is_empty(&self) -> bool;
fn flags(&self) -> &Flags;
fn flags_mut(&mut self) -> &mut Flags;
fn fast_eq(&self, other: Self) -> bool;
}
Required Methods§
fn is_empty(&self) -> bool
fn flags(&self) -> &Flags
fn flags_mut(&mut self) -> &mut Flags
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.