pub enum ClassConstraint {
    ConstraintPrototype(Box<ConstraintPrototype>),
    ConstraintDeclaration(Box<ConstraintDeclaration>),
}Variants§
ConstraintPrototype(Box<ConstraintPrototype>)
ConstraintDeclaration(Box<ConstraintDeclaration>)
Trait Implementations§
Source§impl Clone for ClassConstraint
 
impl Clone for ClassConstraint
Source§fn clone(&self) -> ClassConstraint
 
fn clone(&self) -> ClassConstraint
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 Debug for ClassConstraint
 
impl Debug for ClassConstraint
Source§impl<'a> From<&'a ClassConstraint> for RefNode<'a>
 
impl<'a> From<&'a ClassConstraint> for RefNode<'a>
Source§fn from(x: &'a ClassConstraint) -> RefNode<'a>
 
fn from(x: &'a ClassConstraint) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ClassConstraint> for RefNodes<'a>
 
impl<'a> From<&'a ClassConstraint> for RefNodes<'a>
Source§fn from(x: &'a ClassConstraint) -> RefNodes<'a>
 
fn from(x: &'a ClassConstraint) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ClassConstraint> for AnyNode
 
impl From<ClassConstraint> for AnyNode
Source§fn from(x: ClassConstraint) -> AnyNode
 
fn from(x: ClassConstraint) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ClassConstraint
 
impl<'a> IntoIterator for &'a ClassConstraint
Source§impl PartialEq for ClassConstraint
 
impl PartialEq for ClassConstraint
Source§impl<'a> TryFrom<&'a ClassConstraint> for Locate
 
impl<'a> TryFrom<&'a ClassConstraint> for Locate
Source§impl TryFrom<AnyNode> for ClassConstraint
 
impl TryFrom<AnyNode> for ClassConstraint
Source§impl TryFrom<ClassConstraint> for Locate
 
impl TryFrom<ClassConstraint> for Locate
impl StructuralPartialEq for ClassConstraint
Auto Trait Implementations§
impl Freeze for ClassConstraint
impl RefUnwindSafe for ClassConstraint
impl Send for ClassConstraint
impl Sync for ClassConstraint
impl Unpin for ClassConstraint
impl UnwindSafe for ClassConstraint
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