pub struct AuthenticationDataSource {
pub command_data: Option<String>,
pub http_auth_type: Option<String>,
pub peer_address: Option<Value>,
pub subscription: Option<String>,
pub tls_certificates: Option<Vec<Certificate>>,
}Fields§
§command_data: Option<String>§http_auth_type: Option<String>§peer_address: Option<Value>§subscription: Option<String>§tls_certificates: Option<Vec<Certificate>>Implementations§
source§impl AuthenticationDataSource
impl AuthenticationDataSource
pub fn new() -> AuthenticationDataSource
Trait Implementations§
source§impl Clone for AuthenticationDataSource
impl Clone for AuthenticationDataSource
source§fn clone(&self) -> AuthenticationDataSource
fn clone(&self) -> AuthenticationDataSource
Returns a copy 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 AuthenticationDataSource
impl Debug for AuthenticationDataSource
source§impl Default for AuthenticationDataSource
impl Default for AuthenticationDataSource
source§fn default() -> AuthenticationDataSource
fn default() -> AuthenticationDataSource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AuthenticationDataSource
impl<'de> Deserialize<'de> for AuthenticationDataSource
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
source§impl PartialEq for AuthenticationDataSource
impl PartialEq for AuthenticationDataSource
source§fn eq(&self, other: &AuthenticationDataSource) -> bool
fn eq(&self, other: &AuthenticationDataSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for AuthenticationDataSource
impl Serialize for AuthenticationDataSource
impl StructuralPartialEq for AuthenticationDataSource
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationDataSource
impl Send for AuthenticationDataSource
impl Sync for AuthenticationDataSource
impl Unpin for AuthenticationDataSource
impl UnwindSafe for AuthenticationDataSource
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