Enum espr::ast::Qualifier [−][src]
pub enum Qualifier {
Attribute(String),
Group(String),
Index(Expression),
Range {
begin: Expression,
end: Expression,
},
}Expand description
Output of qualifier
Variants
Attribute(String)Like .x
Tuple Fields of Attribute
0: StringGroup(String)Like \point
Tuple Fields of Group
0: StringIndex(Expression)Like [1]
Tuple Fields of Index
0: ExpressionLike [1:3]
Fields of Range
begin: Expressionend: ExpressionTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Qualifier
impl UnwindSafe for Qualifier
Blanket Implementations
Mutably borrows from an owned value. Read more