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: String
Group(String)
Like \point
Tuple Fields of Group
0: String
Index(Expression)
Like [1]
Tuple Fields of Index
0: Expression
Like [1:3]
Fields of Range
begin: Expression
end: Expression
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Qualifier
impl UnwindSafe for Qualifier
Blanket Implementations
Mutably borrows from an owned value. Read more