logo
pub trait GeneralSecurityProfile {
    fn identifier_allowed(self) -> bool;
    fn identifier_type(self) -> Option<IdentifierType>;
}
Expand description

Methods for determining characters not restricted from use for identifiers.

Required Methods

Returns whether the character is not restricted from use for identifiers.

Returns the identifier type

Implementations on Foreign Types

Implementors