Enum espr::ast::SuperTypeExpression [−][src]
pub enum SuperTypeExpression {
Reference(String),
AndOr {
factors: Vec<SuperTypeExpression>,
},
And {
terms: Vec<SuperTypeExpression>,
},
OneOf {
exprs: Vec<SuperTypeExpression>,
},
}
Variants
Reference(String)
Tuple Fields of Reference
0: String
Fields of AndOr
factors: Vec<SuperTypeExpression>
Fields of And
terms: Vec<SuperTypeExpression>
Fields of OneOf
exprs: Vec<SuperTypeExpression>
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SuperTypeExpression
impl Send for SuperTypeExpression
impl Sync for SuperTypeExpression
impl Unpin for SuperTypeExpression
impl UnwindSafe for SuperTypeExpression
Blanket Implementations
Mutably borrows from an owned value. Read more