//! Domain-specific types for SCIM resources.
//!//! This module contains specialized data structures that represent
//! specific domain concepts used in SCIM resources.
useserde::{Deserialize, Serialize};/// Email address representation extracted from User resources.
#[derive(Debug, Clone, Serialize, Deserialize)]pubstructEmailAddress{pubvalue: String,
#[serde(rename ="type")]pubemail_type:Option<String>,
pubprimary:Option<bool>,
pubdisplay:Option<String>,
}