pub trait SymbolWithOptionalIdentifier<'a> {
// Required methods
fn identifier(&self) -> Option<Identifier<'a>>;
fn has_identifier(&self) -> bool;
}
Expand description
A WebIDL symbol that may have an identifier
pub trait SymbolWithOptionalIdentifier<'a> {
// Required methods
fn identifier(&self) -> Option<Identifier<'a>>;
fn has_identifier(&self) -> bool;
}
A WebIDL symbol that may have an identifier