Struct tokio_postgres::params::UserInfo []

pub struct UserInfo {
    pub user: String,
    pub password: Option<String>,
}

Authentication information.

Fields

The username.

An optional password.

Trait Implementations

impl Debug for UserInfo

Formats the value using the given formatter.

impl Clone for UserInfo