pub struct Proxy {
pub socket: SocketAddrV4,
pub country: Country,
pub last_checked: NaiveDateTime,
pub level: Level,
pub protocol: Protocol,
pub time_to_connect: Duration,
pub supports: Supports,
}
Expand description
All the information representing a proxy.
Typically most people will likely only use the socket
value, but this contains all the
information on a proxy.
Fields§
§socket: SocketAddrV4
§country: Country
§last_checked: NaiveDateTime
§level: Level
§protocol: Protocol
§time_to_connect: Duration
§supports: Supports
Trait Implementations§
impl StructuralPartialEq for Proxy
Auto Trait Implementations§
impl Freeze for Proxy
impl RefUnwindSafe for Proxy
impl Send for Proxy
impl Sync for Proxy
impl Unpin for Proxy
impl UnwindSafe for Proxy
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