pub struct IpProxy {
pub ip: String,
pub port: u16,
pub username: Option<String>,
pub password: Option<String>,
pub proxy_type: Option<String>,
pub rate_limit: f32,
}Fields§
§ip: String§port: u16§username: Option<String>§password: Option<String>§proxy_type: Option<String>§rate_limit: f32Trait Implementations§
Source§impl<'de> Deserialize<'de> for IpProxy
impl<'de> Deserialize<'de> for IpProxy
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
impl StructuralPartialEq for IpProxy
Auto Trait Implementations§
impl Freeze for IpProxy
impl RefUnwindSafe for IpProxy
impl Send for IpProxy
impl Sync for IpProxy
impl Unpin for IpProxy
impl UnsafeUnpin for IpProxy
impl UnwindSafe for IpProxy
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