pub trait Feature: Type {
// Provided methods
fn is_unique(&self) -> bool { ... }
fn is_ordered(&self) -> bool { ... }
fn is_composite(&self) -> bool { ... }
fn is_end(&self) -> bool { ... }
fn is_derived(&self) -> bool { ... }
fn is_readonly(&self) -> bool { ... }
fn is_portion(&self) -> bool { ... }
}
Provided Methods§
fn is_unique(&self) -> bool
fn is_ordered(&self) -> bool
fn is_composite(&self) -> bool
fn is_end(&self) -> bool
fn is_derived(&self) -> bool
fn is_readonly(&self) -> bool
fn is_portion(&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.