bitwarden_api_api/models/
uri_match_type.rsuse serde::{Deserialize, Serialize};
use crate::models;
#[repr(i64)]
#[derive(
Clone,
Copy,
Debug,
Eq,
PartialEq,
Ord,
PartialOrd,
Hash,
serde_repr::Serialize_repr,
serde_repr::Deserialize_repr,
)]
pub enum UriMatchType {
Domain = 0,
Host = 1,
StartsWith = 2,
Exact = 3,
RegularExpression = 4,
Never = 5,
}
impl std::fmt::Display for UriMatchType {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Domain => write!(f, "0"),
Self::Host => write!(f, "1"),
Self::StartsWith => write!(f, "2"),
Self::Exact => write!(f, "3"),
Self::RegularExpression => write!(f, "4"),
Self::Never => write!(f, "5"),
}
}
}
impl Default for UriMatchType {
fn default() -> UriMatchType {
Self::Domain
}
}