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

Trait Implementations

impl Debug for PrincipalName
[src]

Formats the value using the given formatter. Read more

impl PartialEq for PrincipalName
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for PrincipalName
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations