bitwarden_core/auth/login/response/two_factor/
web_authn.rs1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3
4#[allow(missing_docs)]
5#[derive(Serialize, Deserialize, Debug, JsonSchema)]
6#[serde(rename_all = "camelCase", deny_unknown_fields)]
7pub struct WebAuthn {}
8
9impl From<crate::auth::api::response::two_factor_provider_data::web_authn::WebAuthn> for WebAuthn {
10 fn from(_: crate::auth::api::response::two_factor_provider_data::web_authn::WebAuthn) -> Self {
11 Self {}
12 }
13}