pub enum ElementTableLabelAndProperties {
LabelAndPropertiesList(LabelAndPropertiesList),
ElementTableProperties(ElementTableProperties),
}Variants§
LabelAndPropertiesList(LabelAndPropertiesList)
ElementTableProperties(ElementTableProperties)
Trait Implementations§
Source§impl AstNode for ElementTableLabelAndProperties
impl AstNode for ElementTableLabelAndProperties
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for ElementTableLabelAndProperties
impl Clone for ElementTableLabelAndProperties
Source§fn clone(&self) -> ElementTableLabelAndProperties
fn clone(&self) -> ElementTableLabelAndProperties
Returns a duplicate 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 From<LabelAndPropertiesList> for ElementTableLabelAndProperties
impl From<LabelAndPropertiesList> for ElementTableLabelAndProperties
Source§fn from(node: LabelAndPropertiesList) -> ElementTableLabelAndProperties
fn from(node: LabelAndPropertiesList) -> ElementTableLabelAndProperties
Converts to this type from the input type.
Source§impl PartialEq for ElementTableLabelAndProperties
impl PartialEq for ElementTableLabelAndProperties
Source§fn eq(&self, other: &ElementTableLabelAndProperties) -> bool
fn eq(&self, other: &ElementTableLabelAndProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ElementTableLabelAndProperties
impl StructuralPartialEq for ElementTableLabelAndProperties
Auto Trait Implementations§
impl Freeze for ElementTableLabelAndProperties
impl !RefUnwindSafe for ElementTableLabelAndProperties
impl !Send for ElementTableLabelAndProperties
impl !Sync for ElementTableLabelAndProperties
impl Unpin for ElementTableLabelAndProperties
impl UnsafeUnpin for ElementTableLabelAndProperties
impl !UnwindSafe for ElementTableLabelAndProperties
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