pub struct Profile {
pub name: String,
pub version: String,
pub extends: Option<String>,
pub description: Option<String>,
pub include: Vec<String>,
pub exclude: Vec<String>,
pub elements: HashMap<String, ElementDef>,
pub attributes: HashMap<String, AttributeDef>,
pub types: HashMap<String, Vec<String>>,
}Expand description
A CML profile definition
Fields§
§name: StringProfile name (e.g., “core”, “standard”, “legal”)
version: StringProfile version
extends: Option<String>Parent profile to inherit from
description: Option<String>Human-readable description
include: Vec<String>Whitelist of elements to include from parent
exclude: Vec<String>Blacklist of elements to exclude from parent
elements: HashMap<String, ElementDef>Element definitions
attributes: HashMap<String, AttributeDef>Global attribute definitions
types: HashMap<String, Vec<String>>Type vocabularies (enums for type attributes)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more