pub enum ConstraintOperator {
DescendantOf,
DescendantOrSelfOf,
ChildOf,
ChildOrSelfOf,
AncestorOf,
AncestorOrSelfOf,
ParentOf,
ParentOrSelfOf,
Top,
Bottom,
}Expand description
constraintoperator.
Variants§
DescendantOf
<
DescendantOrSelfOf
<<
ChildOf
<!
ChildOrSelfOf
<<!
AncestorOf
>
AncestorOrSelfOf
>>
ParentOf
>!
ParentOrSelfOf
>>!
Top
!!>
Bottom
!!<
Trait Implementations§
Source§impl Clone for ConstraintOperator
impl Clone for ConstraintOperator
Source§fn clone(&self) -> ConstraintOperator
fn clone(&self) -> ConstraintOperator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ConstraintOperator
Source§impl Debug for ConstraintOperator
impl Debug for ConstraintOperator
Source§impl Display for ConstraintOperator
impl Display for ConstraintOperator
impl Eq for ConstraintOperator
Source§impl Hash for ConstraintOperator
impl Hash for ConstraintOperator
Source§impl PartialEq for ConstraintOperator
impl PartialEq for ConstraintOperator
impl StructuralPartialEq for ConstraintOperator
Auto Trait Implementations§
impl Freeze for ConstraintOperator
impl RefUnwindSafe for ConstraintOperator
impl Send for ConstraintOperator
impl Sync for ConstraintOperator
impl Unpin for ConstraintOperator
impl UnsafeUnpin for ConstraintOperator
impl UnwindSafe for ConstraintOperator
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