Skip to main content

AuthInvitationMeta

Trait AuthInvitationMeta 

Source
pub trait AuthInvitationMeta {
    // Provided methods
    fn table() -> &'static str { ... }
    fn col_id() -> &'static str { ... }
    fn col_organization_id() -> &'static str { ... }
    fn col_email() -> &'static str { ... }
    fn col_role() -> &'static str { ... }
    fn col_status() -> &'static str { ... }
    fn col_inviter_id() -> &'static str { ... }
    fn col_expires_at() -> &'static str { ... }
    fn col_created_at() -> &'static str { ... }
}
Expand description

SQL column/table metadata for AuthInvitation entities.

Provided Methods§

Source

fn table() -> &'static str

Source

fn col_id() -> &'static str

Source

fn col_organization_id() -> &'static str

Source

fn col_email() -> &'static str

Source

fn col_role() -> &'static str

Source

fn col_status() -> &'static str

Source

fn col_inviter_id() -> &'static str

Source

fn col_expires_at() -> &'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§