[][src]Enum varlociraptor::grammar::formula::NormalizedFormula

pub enum NormalizedFormula {
    Conjunction {
        operands: Vec<Box<NormalizedFormula>>,
    },
    Disjunction {
        operands: Vec<Box<NormalizedFormula>>,
    },
    Atom {
        sample: String,
        vafs: VAFSpectrum,
    },
    Variant {
        positive: bool,
        refbase: IUPAC,
        altbase: IUPAC,
    },
}

Variants

Conjunction

Fields of Conjunction

operands: Vec<Box<NormalizedFormula>>
Disjunction

Fields of Disjunction

operands: Vec<Box<NormalizedFormula>>
Atom

Fields of Atom

sample: Stringvafs: VAFSpectrum
Variant

Fields of Variant

positive: boolrefbase: IUPACaltbase: IUPAC

Trait Implementations

impl Clone for NormalizedFormula[src]

impl Debug for NormalizedFormula[src]

impl Eq for NormalizedFormula[src]

impl Ord for NormalizedFormula[src]

impl PartialEq<NormalizedFormula> for NormalizedFormula[src]

impl PartialOrd<NormalizedFormula> for NormalizedFormula[src]

impl StructuralEq for NormalizedFormula[src]

impl StructuralPartialEq for NormalizedFormula[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,