pub trait CubeOrdering {
// Provided methods
fn Less() -> Ordering { ... }
fn Equal() -> Ordering { ... }
fn Greater() -> Ordering { ... }
fn __expand_Less(_scope: &mut Scope) -> OrderingExpand { ... }
fn __expand_Equal(_scope: &mut Scope) -> OrderingExpand { ... }
fn __expand_Greater(_scope: &mut Scope) -> OrderingExpand { ... }
}Provided Methods§
fn Less() -> Ordering
fn Equal() -> Ordering
fn Greater() -> Ordering
fn __expand_Less(_scope: &mut Scope) -> OrderingExpand
fn __expand_Equal(_scope: &mut Scope) -> OrderingExpand
fn __expand_Greater(_scope: &mut Scope) -> OrderingExpand
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.