pub struct ExternalProxyAuth {
pub keyring_account: String,
pub scheme: String,
}Expand description
Authentication for an external proxy.
Fields§
§keyring_account: StringKeystore account name for proxy credentials.
scheme: StringAuthentication scheme (only “basic” supported).
Trait Implementations§
Source§impl Clone for ExternalProxyAuth
impl Clone for ExternalProxyAuth
Source§fn clone(&self) -> ExternalProxyAuth
fn clone(&self) -> ExternalProxyAuth
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 moreSource§impl Debug for ExternalProxyAuth
impl Debug for ExternalProxyAuth
Source§impl<'de> Deserialize<'de> for ExternalProxyAuth
impl<'de> Deserialize<'de> for ExternalProxyAuth
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 ExternalProxyAuth
impl RefUnwindSafe for ExternalProxyAuth
impl Send for ExternalProxyAuth
impl Sync for ExternalProxyAuth
impl Unpin for ExternalProxyAuth
impl UnsafeUnpin for ExternalProxyAuth
impl UnwindSafe for ExternalProxyAuth
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