pub trait AuthPasskeyMeta {
// Provided methods
fn table() -> &'static str { ... }
fn col_id() -> &'static str { ... }
fn col_name() -> &'static str { ... }
fn col_public_key() -> &'static str { ... }
fn col_user_id() -> &'static str { ... }
fn col_credential_id() -> &'static str { ... }
fn col_counter() -> &'static str { ... }
fn col_device_type() -> &'static str { ... }
fn col_backed_up() -> &'static str { ... }
fn col_transports() -> &'static str { ... }
fn col_created_at() -> &'static str { ... }
}Expand description
SQL column/table metadata for AuthPasskey entities.
Provided Methods§
fn table() -> &'static str
fn col_id() -> &'static str
fn col_name() -> &'static str
fn col_public_key() -> &'static str
fn col_user_id() -> &'static str
fn col_credential_id() -> &'static str
fn col_counter() -> &'static str
fn col_device_type() -> &'static str
fn col_backed_up() -> &'static str
fn col_transports() -> &'static str
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.