pub enum ClassProperty {
NonConst(Box<ClassPropertyNonConst>),
Const(Box<ClassPropertyConst>),
}Variants
NonConst(Box<ClassPropertyNonConst>)
Const(Box<ClassPropertyConst>)
Trait Implementations
sourceimpl Clone for ClassProperty
impl Clone for ClassProperty
sourcefn clone(&self) -> ClassProperty
fn clone(&self) -> ClassProperty
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ClassProperty
impl Debug for ClassProperty
sourceimpl<'a> From<&'a ClassProperty> for RefNodes<'a>
impl<'a> From<&'a ClassProperty> for RefNodes<'a>
sourcefn from(x: &'a ClassProperty) -> Self
fn from(x: &'a ClassProperty) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ClassProperty> for RefNode<'a>
impl<'a> From<&'a ClassProperty> for RefNode<'a>
sourcefn from(x: &'a ClassProperty) -> Self
fn from(x: &'a ClassProperty) -> Self
Converts to this type from the input type.
sourceimpl From<ClassProperty> for AnyNode
impl From<ClassProperty> for AnyNode
sourcefn from(x: ClassProperty) -> Self
fn from(x: ClassProperty) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ClassProperty
impl<'a> IntoIterator for &'a ClassProperty
sourceimpl PartialEq<ClassProperty> for ClassProperty
impl PartialEq<ClassProperty> for ClassProperty
sourcefn eq(&self, other: &ClassProperty) -> bool
fn eq(&self, other: &ClassProperty) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ClassProperty) -> bool
fn ne(&self, other: &ClassProperty) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ClassProperty> for Locate
impl<'a> TryFrom<&'a ClassProperty> for Locate
sourceimpl TryFrom<AnyNode> for ClassProperty
impl TryFrom<AnyNode> for ClassProperty
sourceimpl TryFrom<ClassProperty> for Locate
impl TryFrom<ClassProperty> for Locate
impl StructuralPartialEq for ClassProperty
Auto Trait Implementations
impl RefUnwindSafe for ClassProperty
impl Send for ClassProperty
impl Sync for ClassProperty
impl Unpin for ClassProperty
impl UnwindSafe for ClassProperty
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more