We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 274a1a3 commit 1a52ca3Copy full SHA for 1a52ca3
src/ast/mod.rs
@@ -11428,7 +11428,9 @@ impl fmt::Display for AlterUser {
11428
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
11429
#[cfg_attr(feature = "visitor", derive(Visit, VisitMut))]
11430
pub struct AlterUserPassword {
11431
+ /// Whether the password is encrypted.
11432
pub encrypted: bool,
11433
+ /// The password string, or `None` for `NULL`.
11434
pub password: Option<String>,
11435
}
11436
0 commit comments