pub struct UpstreamProxyState {
pub enabled: bool,
pub proxy_url: Option<String>,
pub ca_bundle_path: Option<PathBuf>,
pub no_proxy: String,
}Fields§
§enabled: bool§proxy_url: Option<String>§ca_bundle_path: Option<PathBuf>§no_proxy: StringImplementations§
Trait Implementations§
Source§impl Clone for UpstreamProxyState
impl Clone for UpstreamProxyState
Source§fn clone(&self) -> UpstreamProxyState
fn clone(&self) -> UpstreamProxyState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpstreamProxyState
impl Debug for UpstreamProxyState
Source§impl PartialEq for UpstreamProxyState
impl PartialEq for UpstreamProxyState
impl Eq for UpstreamProxyState
impl StructuralPartialEq for UpstreamProxyState
Auto Trait Implementations§
impl Freeze for UpstreamProxyState
impl RefUnwindSafe for UpstreamProxyState
impl Send for UpstreamProxyState
impl Sync for UpstreamProxyState
impl Unpin for UpstreamProxyState
impl UnsafeUnpin for UpstreamProxyState
impl UnwindSafe for UpstreamProxyState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more