pub trait TupleDelta: Sized + Copy {
// Required methods
fn is_point() -> bool;
fn new(position: u16, x: i32, y: i32) -> Self;
}
Expand description
Trait for deltas that are computed in a tuple variation store.
Required 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.