pub trait Intersect {
    // Required method
    fn intersect(&self, other: &Self) -> Self;
}
Expand description

Intersect capabilities between two entities, such as a client and an AP. Note: a.intersect(b) is not guaranteed to be the same as b.intersect(b). One such example is the TX_STBC and RX_STBC fields in HtCapabilityInfo.

Required Methods§

source

fn intersect(&self, other: &Self) -> Self

Object Safety§

This trait is not object safe.

Implementors§