Skip to main content

AuthMemberMeta

Trait AuthMemberMeta 

Source
pub trait AuthMemberMeta {
    // Provided methods
    fn table() -> &'static str { ... }
    fn col_id() -> &'static str { ... }
    fn col_organization_id() -> &'static str { ... }
    fn col_user_id() -> &'static str { ... }
    fn col_role() -> &'static str { ... }
    fn col_created_at() -> &'static str { ... }
}
Expand description

SQL column/table metadata for AuthMember entities.

Provided Methods§

Source

fn table() -> &'static str

Source

fn col_id() -> &'static str

Source

fn col_organization_id() -> &'static str

Source

fn col_user_id() -> &'static str

Source

fn col_role() -> &'static str

Source

fn col_created_at() -> &'static str

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§