pub struct RegistryEntry {
pub codepoint: u64,
pub name: String,
pub entry_type: Option<String>,
pub uri: Option<String>,
pub description: Option<String>,
}Expand description
A single entry in a known values JSON registry file.
Fields§
§codepoint: u64The unique numeric identifier for this known value.
name: StringThe canonical string name for this known value.
entry_type: Option<String>The type of entry (e.g., “property”, “class”, “value”).
uri: Option<String>An optional URI reference for this known value.
description: Option<String>An optional human-readable description.
Trait Implementations§
Source§impl Debug for RegistryEntry
impl Debug for RegistryEntry
Source§impl<'de> Deserialize<'de> for RegistryEntry
impl<'de> Deserialize<'de> for RegistryEntry
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 RegistryEntry
impl RefUnwindSafe for RegistryEntry
impl Send for RegistryEntry
impl Sync for RegistryEntry
impl Unpin for RegistryEntry
impl UnwindSafe for RegistryEntry
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