pub struct BaseCredentialExchanger {
pub auth_credential: Value,
pub auth_scheme: Option<Value>,
}Expand description
Base interface for credential exchangers. Credential exchangers are responsible for exchanging credentials from one format or scheme to another.
Fields§
§auth_credential: Value§auth_scheme: Option<Value>Trait Implementations§
Source§impl Clone for BaseCredentialExchanger
impl Clone for BaseCredentialExchanger
Source§fn clone(&self) -> BaseCredentialExchanger
fn clone(&self) -> BaseCredentialExchanger
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 BaseCredentialExchanger
impl Debug for BaseCredentialExchanger
Source§impl Default for BaseCredentialExchanger
impl Default for BaseCredentialExchanger
Source§fn default() -> BaseCredentialExchanger
fn default() -> BaseCredentialExchanger
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BaseCredentialExchanger
impl RefUnwindSafe for BaseCredentialExchanger
impl Send for BaseCredentialExchanger
impl Sync for BaseCredentialExchanger
impl Unpin for BaseCredentialExchanger
impl UnwindSafe for BaseCredentialExchanger
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