pub trait AuthSessionMeta {
// Provided methods
fn table() -> &'static str { ... }
fn col_id() -> &'static str { ... }
fn col_expires_at() -> &'static str { ... }
fn col_token() -> &'static str { ... }
fn col_created_at() -> &'static str { ... }
fn col_updated_at() -> &'static str { ... }
fn col_ip_address() -> &'static str { ... }
fn col_user_agent() -> &'static str { ... }
fn col_user_id() -> &'static str { ... }
fn col_impersonated_by() -> &'static str { ... }
fn col_active_organization_id() -> &'static str { ... }
fn col_active() -> &'static str { ... }
}Expand description
SQL column/table metadata for AuthSession entities.
Provided Methods§
fn table() -> &'static str
fn col_id() -> &'static str
fn col_expires_at() -> &'static str
fn col_token() -> &'static str
fn col_created_at() -> &'static str
fn col_updated_at() -> &'static str
fn col_ip_address() -> &'static str
fn col_user_agent() -> &'static str
fn col_user_id() -> &'static str
fn col_impersonated_by() -> &'static str
fn col_active_organization_id() -> &'static str
fn col_active() -> &'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.