pub trait PublicFlags {
    type Primitive: Primitive;
    type Internal;
}
Expand description

A trait for referencing the bitflags-owned internal type without exposing it publicly.

Required Associated Types§

source

type Primitive: Primitive

The type of the underlying storage.

source

type Internal

The type of the internal field on the generated flags type.

Implementors§