/*
* Bitwarden Internal API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: latest
*
* Generated by: https://openapi-generator.tech
*/
///
#[repr(i64)]
#[derive(
Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize_repr, Deserialize_repr,
)]
pub enum WebAuthnPrfStatus {
Enabled = 0,
Supported = 1,
Unsupported = 2,
}
impl ToString for WebAuthnPrfStatus {
fn to_string(&self) -> String {
match self {
Self::Enabled => String::from("0"),
Self::Supported => String::from("1"),
Self::Unsupported => String::from("2"),
}
}
}
impl Default for WebAuthnPrfStatus {
fn default() -> WebAuthnPrfStatus {
Self::Enabled
}
}