[][src]Struct winauth::NtlmV2Client

pub struct NtlmV2Client<'a> { /* fields omitted */ }

An authentication client to authenticate against a server (outbound)

Trait Implementations

impl<'a> NextBytes for NtlmV2Client<'a>[src]

fn next_bytes(&mut self, bytes: Option<&[u8]>) -> Result<Option<Vec<u8>>>[src]

This returns the next bytes which have to be sent to the server.
The authentication is complete, when this returns None

Auto Trait Implementations

impl<'a> Unpin for NtlmV2Client<'a>

impl<'a> Sync for NtlmV2Client<'a>

impl<'a> Send for NtlmV2Client<'a>

impl<'a> UnwindSafe for NtlmV2Client<'a>

impl<'a> RefUnwindSafe for NtlmV2Client<'a>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,