Enum rust_tdlib::types::ProxyType
source · [−]pub enum ProxyType {
Http(ProxyTypeHttp),
Mtproto(ProxyTypeMtproto),
Socks5(ProxyTypeSocks5),
// some variants omitted
}Expand description
Describes the type of a proxy server
Variants
Http(ProxyTypeHttp)
A HTTP transparent proxy server
Mtproto(ProxyTypeMtproto)
An MTProto proxy server
Socks5(ProxyTypeSocks5)
A SOCKS5 proxy server
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for ProxyType
impl<'de> Deserialize<'de> for ProxyType
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ProxyType
impl Send for ProxyType
impl Sync for ProxyType
impl Unpin for ProxyType
impl UnwindSafe for ProxyType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more