pub trait AuthAccountMeta {
Show 14 methods
// Provided methods
fn table() -> &'static str { ... }
fn col_id() -> &'static str { ... }
fn col_account_id() -> &'static str { ... }
fn col_provider_id() -> &'static str { ... }
fn col_user_id() -> &'static str { ... }
fn col_access_token() -> &'static str { ... }
fn col_refresh_token() -> &'static str { ... }
fn col_id_token() -> &'static str { ... }
fn col_access_token_expires_at() -> &'static str { ... }
fn col_refresh_token_expires_at() -> &'static str { ... }
fn col_scope() -> &'static str { ... }
fn col_password() -> &'static str { ... }
fn col_created_at() -> &'static str { ... }
fn col_updated_at() -> &'static str { ... }
}Expand description
SQL column/table metadata for AuthAccount entities.
Provided Methods§
fn table() -> &'static str
fn col_id() -> &'static str
fn col_account_id() -> &'static str
fn col_provider_id() -> &'static str
fn col_user_id() -> &'static str
fn col_access_token() -> &'static str
fn col_refresh_token() -> &'static str
fn col_id_token() -> &'static str
fn col_access_token_expires_at() -> &'static str
fn col_refresh_token_expires_at() -> &'static str
fn col_scope() -> &'static str
fn col_password() -> &'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.