pub struct ParsedAriaProperty {
pub name: String,
pub idl_name: String,
pub description: String,
pub is_global: bool,
pub value_kind: AriaPropertyValueKind,
pub default_value: Option<String>,
}
Expand description
The parsed WebIDL definitions converted from the raw spec.
Fields§
§name: String
§idl_name: String
§description: String
§is_global: bool
§value_kind: AriaPropertyValueKind
§default_value: Option<String>
Trait Implementations§
Source§impl Clone for ParsedAriaProperty
impl Clone for ParsedAriaProperty
Source§fn clone(&self) -> ParsedAriaProperty
fn clone(&self) -> ParsedAriaProperty
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParsedAriaProperty
impl Debug for ParsedAriaProperty
Source§impl<'de> Deserialize<'de> for ParsedAriaProperty
impl<'de> Deserialize<'de> for ParsedAriaProperty
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
Source§impl From<ParsedAriaProperty> for Attribute
impl From<ParsedAriaProperty> for Attribute
Source§fn from(value: ParsedAriaProperty) -> Self
fn from(value: ParsedAriaProperty) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParsedAriaProperty
impl RefUnwindSafe for ParsedAriaProperty
impl Send for ParsedAriaProperty
impl Sync for ParsedAriaProperty
impl Unpin for ParsedAriaProperty
impl UnwindSafe for ParsedAriaProperty
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