pub trait PartialOrdNativeExpand {
// Required methods
fn __expand_native_lt(
scope: &Scope,
lhs: ExpandValue,
rhs: ExpandValue,
) -> ExpandValue;
fn __expand_native_le(
scope: &Scope,
lhs: ExpandValue,
rhs: ExpandValue,
) -> ExpandValue;
fn __expand_native_gt(
scope: &Scope,
lhs: ExpandValue,
rhs: ExpandValue,
) -> ExpandValue;
fn __expand_native_ge(
scope: &Scope,
lhs: ExpandValue,
rhs: ExpandValue,
) -> ExpandValue;
}Required Methods§
fn __expand_native_lt( scope: &Scope, lhs: ExpandValue, rhs: ExpandValue, ) -> ExpandValue
fn __expand_native_le( scope: &Scope, lhs: ExpandValue, rhs: ExpandValue, ) -> ExpandValue
fn __expand_native_gt( scope: &Scope, lhs: ExpandValue, rhs: ExpandValue, ) -> ExpandValue
fn __expand_native_ge( scope: &Scope, lhs: ExpandValue, rhs: ExpandValue, ) -> ExpandValue
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".