pub struct SessionConfigPatch {Show 13 fields
pub dsn_secret: PatchField<String>,
pub conninfo_secret: PatchField<String>,
pub host: PatchField<String>,
pub port: PatchField<u16>,
pub user: PatchField<String>,
pub dbname: PatchField<String>,
pub password_secret: PatchField<String>,
pub ssh: PatchField<String>,
pub ssh_options: PatchField<Vec<String>>,
pub ssh_local_host: PatchField<String>,
pub ssh_local_port: PatchField<u16>,
pub ssh_remote_socket: PatchField<String>,
pub ssh_sudo_user: PatchField<String>,
}Fields§
§dsn_secret: PatchField<String>§conninfo_secret: PatchField<String>§host: PatchField<String>§port: PatchField<u16>§user: PatchField<String>§dbname: PatchField<String>§password_secret: PatchField<String>§ssh: PatchField<String>§ssh_options: PatchField<Vec<String>>§ssh_local_host: PatchField<String>§ssh_local_port: PatchField<u16>§ssh_remote_socket: PatchField<String>§ssh_sudo_user: PatchField<String>Trait Implementations§
Source§impl Debug for SessionConfigPatch
impl Debug for SessionConfigPatch
Source§impl Default for SessionConfigPatch
impl Default for SessionConfigPatch
Source§fn default() -> SessionConfigPatch
fn default() -> SessionConfigPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionConfigPatch
impl<'de> Deserialize<'de> for SessionConfigPatch
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 SessionConfigPatch
impl RefUnwindSafe for SessionConfigPatch
impl Send for SessionConfigPatch
impl Sync for SessionConfigPatch
impl Unpin for SessionConfigPatch
impl UnsafeUnpin for SessionConfigPatch
impl UnwindSafe for SessionConfigPatch
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