pub struct SessionConfigPatch {
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: SshConfigPatch,
pub container: ContainerConfigPatch,
}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: SshConfigPatch§container: ContainerConfigPatchTrait 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