Trait Feature

Source
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§

Source

fn is_unique(&self) -> bool

Source

fn is_ordered(&self) -> bool

Source

fn is_composite(&self) -> bool

Source

fn is_end(&self) -> bool

Source

fn is_derived(&self) -> bool

Source

fn is_readonly(&self) -> bool

Source

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.

Implementors§