Skip to main content

GetProxyDigest

Trait GetProxyDigest 

Source
pub trait GetProxyDigest {
    // Required method
    fn get_proxy_digest(&self) -> Option<Arc<ProxyDigest>>;

    // Provided method
    fn set_proxy_digest(&mut self, _digest: ProxyDigest) { ... }
}
Expand description

The interface to set or return proxy information

Required Methods§

Provided Methods§

Source

fn set_proxy_digest(&mut self, _digest: ProxyDigest)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl GetProxyDigest for DuplexStream

Source§

impl GetProxyDigest for Mock

Source§

impl GetProxyDigest for UnixStream

Available on Unix only.
Source§

impl<T> GetProxyDigest for Cursor<T>

Implementors§

Source§

impl GetProxyDigest for Stream

Source§

impl<S> GetProxyDigest for SslStream<S>

Available on non-crate feature any_tls only.