Trait abi_stable::nonexhaustive_enum::GetNonExhaustive[][src]

pub unsafe trait GetNonExhaustive<Storage>: GetEnumInfo {
    type NonExhaustive;
}
Expand description

Gets the type whose type layout is used to represent this enum in NonExhaustive<>.

Safety

Self::NonExhaustive must describe the layout of this enum, with the size and alignment of Storage.

Associated Types

The type whose type layout is used to represent this enum.

Implementors