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