pub trait Subset {
    fn is_subset<U: ComponentBorrow>() -> bool;
}
Expand description

Declare subset relations between tuples

Required methods

Returns true if U is a subset of Self

Implementors