Struct kerberos_parser::krb5::PrincipalName
[−]
[src]
pub struct PrincipalName {
pub name_type: NameType,
pub name_string: Vec<String>,
}Kerberos PrincipalName
A Kerberos principal is a service or user that is known to the Kerberos system. Each Kerberos principal is identified by its principal name. Principal names consist of three parts: a service or user name, an instance name, and a realm name in the following form:
principal-name.instance-name@realm-name
Fields
name_type: NameType
name_string: Vec<String>
Trait Implementations
impl Debug for PrincipalName[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for PrincipalName[src]
fn eq(&self, __arg_0: &PrincipalName) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &PrincipalName) -> bool[src]
This method tests for !=.