pub struct ProxyParams {
pub proxy_type: String,
pub country: Option<String>,
}Expand description
Proxy configuration.
Fields§
§proxy_type: String§country: Option<String>Trait Implementations§
Source§impl Clone for ProxyParams
impl Clone for ProxyParams
Source§fn clone(&self) -> ProxyParams
fn clone(&self) -> ProxyParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProxyParams
impl Debug for ProxyParams
Source§impl<'de> Deserialize<'de> for ProxyParams
impl<'de> Deserialize<'de> for ProxyParams
Source§fn 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 Freeze for ProxyParams
impl RefUnwindSafe for ProxyParams
impl Send for ProxyParams
impl Sync for ProxyParams
impl Unpin for ProxyParams
impl UnsafeUnpin for ProxyParams
impl UnwindSafe for ProxyParams
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