Struct noxious::proxy::ProxyWithToxics[][src]

pub struct ProxyWithToxics {
    pub proxy: ProxyConfig,
    pub toxics: Vec<Toxic>,
}

The serializable API response

Fields

proxy: ProxyConfig

The proxy details

toxics: Vec<Toxic>

Toxics installed on the proxy

Implementations

impl ProxyWithToxics[src]

pub fn from_shared_proxy_info(info: SharedProxyInfo) -> Self[src]

Create the full ProxyWithToxics from SharedProxyInfo

pub fn from_proxy_config(proxy_config: ProxyConfig) -> Self[src]

Create a new ProxyWithToxics with empty toxics

Trait Implementations

impl Clone for ProxyWithToxics[src]

impl Debug for ProxyWithToxics[src]

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

impl PartialEq<ProxyWithToxics> for ProxyWithToxics[src]

impl Serialize for ProxyWithToxics[src]

impl StructuralPartialEq for ProxyWithToxics[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> Instrument 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<V, T> VZip<V> for T where
    V: MultiLane<T>,