pub struct SqlAuthConfig {
pub connection_string: String,
pub query: String,
}Expand description
SQL authentication configuration
Fields§
§connection_string: String§query: StringTrait Implementations§
Source§impl Clone for SqlAuthConfig
impl Clone for SqlAuthConfig
Source§fn clone(&self) -> SqlAuthConfig
fn clone(&self) -> SqlAuthConfig
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 SqlAuthConfig
impl Debug for SqlAuthConfig
Source§impl<'de> Deserialize<'de> for SqlAuthConfig
impl<'de> Deserialize<'de> for SqlAuthConfig
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 SqlAuthConfig
impl RefUnwindSafe for SqlAuthConfig
impl Send for SqlAuthConfig
impl Sync for SqlAuthConfig
impl Unpin for SqlAuthConfig
impl UnsafeUnpin for SqlAuthConfig
impl UnwindSafe for SqlAuthConfig
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