[][src]Struct kerberos_parser::krb5::PrincipalName

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: NameTypename_string: Vec<String>

Trait Implementations

impl PartialEq<PrincipalName> for PrincipalName[src]

impl Display for PrincipalName[src]

impl Debug for PrincipalName[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]