pub enum ProxyResolution {
Proxied {
proxy_url: String,
},
Direct,
}Expand description
Result of attempting to resolve a proxy URL for a given upstream.
Variants§
Proxied
Daemon is running and has a matching proxy.
Direct
Daemon is not running or has no match; use direct URL.
Auto Trait Implementations§
impl Freeze for ProxyResolution
impl RefUnwindSafe for ProxyResolution
impl Send for ProxyResolution
impl Sync for ProxyResolution
impl Unpin for ProxyResolution
impl UnsafeUnpin for ProxyResolution
impl UnwindSafe for ProxyResolution
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