[][src]Enum bpxe_bpmn_schema::Expr

pub enum Expr {
    Expression(Expression),
    FormalExpression(FormalExpression),
}

Expression or Formal Expression

BPMN expressions are often hot-patched with xsi:type to re-type them to formal expressions. This type handles this case.

Variants

Expression(Expression)
FormalExpression(FormalExpression)

Implementations

impl Expr[src]

pub fn into_inner(self) -> Box<dyn DocumentElement>[src]

Trait Implementations

impl Clone for Expr[src]

impl Debug for Expr[src]

impl Default for Expr[src]

impl<'de> Deserialize<'de> for Expr[src]

impl DocumentElement for Expr[src]

impl DocumentElementContainer for Expr[src]

impl From<Expression> for Expr[src]

impl From<FormalExpression> for Expr[src]

impl Hash for Expr[src]

impl PartialEq<Expr> for Expr[src]

impl Serialize for Expr[src]

impl StructuralPartialEq for Expr[src]

impl<'a> XmlRead<'a> for Expr[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<S> CastArc for S where
    S: CastFromSync + ?Sized
[src]

impl<S> CastBox for S where
    S: CastFrom + ?Sized
[src]

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

impl<T> CastFromSync for T where
    T: 'static + Send + Sync
[src]

impl<S> CastMut for S where
    S: CastFrom + ?Sized
[src]

impl<S> CastRc for S where
    S: CastFrom + ?Sized
[src]

impl<S> CastRef for S where
    S: CastFrom + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> DynClone for T where
    T: Clone
[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<T> XmlReadOwned for T where
    T: for<'s> XmlRead<'s>, 
[src]