pub trait RoleOptBuilderExt {
    fn role_opts(&mut self) -> &mut Option<BTreeSet<RoleOpt>>;

    fn password(&mut self, p: impl Into<LitStr>) -> &mut Self { ... }
    fn login(&mut self, b: bool) -> &mut Self { ... }
    fn superuser(&mut self, b: bool) -> &mut Self { ... }
    fn role_options(&mut self, m: impl Into<MapLiteral>) -> &mut Self { ... }
    fn access_to_datacenters(&mut self, s: impl Into<SetLiteral>) -> &mut Self { ... }
    fn access_to_all_datacenters(&mut self) -> &mut Self { ... }
}

Required Methods

Provided Methods

Implementors