pub trait RangeInclusiveExt<Idx> {
// Required methods
fn new_log(start: Idx, end: Idx) -> Self;
fn start_log(self) -> Idx;
fn end_log(self) -> Idx;
fn is_empty_log(self) -> bool
where Idx: DeepModel,
Idx::DeepModelTy: OrdLogic;
}Required Methods§
Sourcefn is_empty_log(self) -> bool
fn is_empty_log(self) -> bool
⚠
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.