pub trait AuthOrganizationMeta {
// Provided methods
fn table() -> &'static str { ... }
fn col_id() -> &'static str { ... }
fn col_name() -> &'static str { ... }
fn col_slug() -> &'static str { ... }
fn col_logo() -> &'static str { ... }
fn col_metadata() -> &'static str { ... }
fn col_created_at() -> &'static str { ... }
fn col_updated_at() -> &'static str { ... }
}Expand description
SQL column/table metadata for AuthOrganization entities.
Provided Methods§
fn table() -> &'static str
fn col_id() -> &'static str
fn col_name() -> &'static str
fn col_slug() -> &'static str
fn col_logo() -> &'static str
fn col_metadata() -> &'static str
fn col_created_at() -> &'static str
fn col_updated_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.