Trait ApproxEq
pub trait ApproxEq: PartialEq {
// Required method
fn approx_eq(&self, other: &Self) -> bool;
}
Expand description
Approximate equality-comparison of geometric types.
The implementation is specific to the type. It’s mostly used for gdext-internal tests, but you may use it for your own code. Note that we give no guarantees about precision, and implementation can change at any time.
We currently also do not guarantee that this gives the same results as Godot’s own is_equal_approx()
function; although this may
be the goal in the future.
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.