pub enum SecurityPackageType {
Ntlm,
Kerberos,
Negotiate,
Pku2u,
Other(String),
}Expand description
Represents the security principal in use.
Variants§
Trait Implementations§
Source§impl AsRef<str> for SecurityPackageType
impl AsRef<str> for SecurityPackageType
Source§impl Clone for SecurityPackageType
impl Clone for SecurityPackageType
Source§fn clone(&self) -> SecurityPackageType
fn clone(&self) -> SecurityPackageType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecurityPackageType
impl Debug for SecurityPackageType
Source§impl Display for SecurityPackageType
impl Display for SecurityPackageType
Auto Trait Implementations§
impl Freeze for SecurityPackageType
impl RefUnwindSafe for SecurityPackageType
impl Send for SecurityPackageType
impl Sync for SecurityPackageType
impl Unpin for SecurityPackageType
impl UnwindSafe for SecurityPackageType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more