Trait sql::catalog::CatalogRole[][src]

pub trait CatalogRole {
    fn name(&self) -> &str;
fn id(&self) -> i64; }
Expand description

A role in a SessionCatalog.

Required methods

Returns a fully-specified name of the role.

Returns a stable ID for the role.

Implementors