[][src]Struct koibumi_node_sync::SocksAuth

pub struct SocksAuth { /* fields omitted */ }

Represents a username and a password used to authenticate SOCKS5 connection.

Implementations

impl SocksAuth[src]

pub fn new(username: String, password: String) -> Self[src]

Creates a authentication object consists of a username and a password.

pub fn username(&self) -> &str[src]

Returns the username.

pub fn password(&self) -> &str[src]

Returns the password.

Trait Implementations

impl Clone for SocksAuth[src]

impl Debug for SocksAuth[src]

impl<'de> Deserialize<'de> for SocksAuth[src]

impl Eq for SocksAuth[src]

impl PartialEq<SocksAuth> for SocksAuth[src]

impl Serialize for SocksAuth[src]

impl StructuralEq for SocksAuth[src]

impl StructuralPartialEq for SocksAuth[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,