pub trait RestrictableKeyType: KeyType {
    type Restriction: KeyRestriction + ?Sized;
}
Expand description

A key which may be restricted into being added to a keyring.

Required Associated Types§

source

type Restriction: KeyRestriction + ?Sized

The type for representing a restriction for adding keys of this type.

Implementors§