Enum shadowsocks_service::config::ProtocolType[][src]

pub enum ProtocolType {
    Socks,
}

Protocol of local server

Variants

Socks

Implementations

impl ProtocolType[src]

pub fn as_str(&self) -> &'static str[src]

As string representation

pub fn available_protocols() -> &'static [&'static str][src]

Get all available protocols

Trait Implementations

impl Clone for ProtocolType[src]

impl Copy for ProtocolType[src]

impl Debug for ProtocolType[src]

impl Default for ProtocolType[src]

impl Eq for ProtocolType[src]

impl FromStr for ProtocolType[src]

type Err = ProtocolTypeError

The associated error which can be returned from parsing.

impl PartialEq<ProtocolType> for ProtocolType[src]

impl StructuralEq for ProtocolType[src]

impl StructuralPartialEq for ProtocolType[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Any + Clone

impl<T> CloneAny for T where
    T: Any + Clone

impl<T> DebugAny for T where
    T: Any + Debug

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

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

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<T> UnsafeAny for T where
    T: Any

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