pub trait CapabilityTrait {
    const IS_UNIQUE: bool;

    // Required method
    fn to_capability(self) -> Capability;
}

Required Associated Constants§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§