pub struct ProxyCredentials {
pub username: String,
pub password: String,
}Expand description
Proxy credentials for authentication.
Fields§
§username: StringUsername for proxy authentication.
password: StringPassword for proxy authentication.
Implementations§
Trait Implementations§
Source§impl Clone for ProxyCredentials
impl Clone for ProxyCredentials
Source§fn clone(&self) -> ProxyCredentials
fn clone(&self) -> ProxyCredentials
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 moreAuto Trait Implementations§
impl Freeze for ProxyCredentials
impl RefUnwindSafe for ProxyCredentials
impl Send for ProxyCredentials
impl Sync for ProxyCredentials
impl Unpin for ProxyCredentials
impl UnwindSafe for ProxyCredentials
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