pub struct CustomConnectionData {
pub auth_scheme: Option<String>,
pub parameters: Option<HashMap<String, Value>>,
}Expand description
Custom connection data for various auth schemes
Fields§
§auth_scheme: Option<String>Authentication scheme
parameters: Option<HashMap<String, Value>>Connection parameters
Trait Implementations§
Source§impl Clone for CustomConnectionData
impl Clone for CustomConnectionData
Source§fn clone(&self) -> CustomConnectionData
fn clone(&self) -> CustomConnectionData
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 CustomConnectionData
impl Debug for CustomConnectionData
Source§impl<'de> Deserialize<'de> for CustomConnectionData
impl<'de> Deserialize<'de> for CustomConnectionData
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 CustomConnectionData
impl RefUnwindSafe for CustomConnectionData
impl Send for CustomConnectionData
impl Sync for CustomConnectionData
impl Unpin for CustomConnectionData
impl UnsafeUnpin for CustomConnectionData
impl UnwindSafe for CustomConnectionData
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