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 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 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§impl Serialize for AuthenticationDataSource
impl Serialize for AuthenticationDataSource
impl StructuralPartialEq for AuthenticationDataSource
Auto Trait Implementations§
impl Freeze for AuthenticationDataSource
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