[][src]Struct libgssapi::name::Name

pub struct Name(_);

Methods

impl Name[src]

pub fn new(s: &[u8], kind: Option<&Oid>) -> Result<Self, Error>[src]

parse the specified bytes as a gssapi name, with optional kind e.g. GSS_NT_HOSTBASED_SERVICE or GSS_NT_KRB5_PRINCIPAL.

pub fn canonicalize(&self, mech: Option<&Oid>) -> Result<Self, Error>[src]

canonicalize a name for the specified mechanism (or the default mechanism if not specified). This makes a copy of the name.

pub fn export(&self) -> Result<Buf, Error>[src]

Produce a contiguous string representation of a canonicalized name suitable for direct comparison. You must either use a canonical name, or call canonicalize before using this method.

pub fn duplicate(&self) -> Result<Self, Error>[src]

Duplicate the name.

Trait Implementations

impl Debug for Name[src]

impl Display for Name[src]

impl Drop for Name[src]

impl Send for Name[src]

impl Sync for Name[src]

Auto Trait Implementations

impl RefUnwindSafe for Name

impl Unpin for Name

impl UnwindSafe for Name

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.