use crate::token; #[cfg(feature = "serde")] use serde::{Deserialize, Serialize}; #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] #[derive(PartialEq, Eq, Clone, Copy)] pub enum DataType { #[cfg_attr(feature = "serde", serde(rename = "webauthn.create"))] Create, #[cfg_attr(feature = "serde", serde(rename = "webauthn.get"))] Get, } /// > The client data represents the contextual bindings of both the /// > `WebAuthn` Relying Party and the client. /// > /// > pub struct Data { /// > This member contains the base64url encoding of the challenge /// > provided by the Relying Party. pub challenge: String, /// > This member contains the fully qualified origin of the requester, /// > as provided to the authenticator by the client, in the syntax /// > defined by /// > [RFC6454](https://www.w3.org/TR/webauthn-3/#biblio-rfc6454). pub origin: String, // TODO: Description pub cross_origin: Option, /// > ...contains information about the state of the Token Binding /// > protocol... used when communicating with the Relying Party. Its /// > absence indicates that the client doesn’t support token binding. pub token_binding: Option, }