pub type Bounds = Cons<Colon, VerbatimUntil<Either<Comma, Eq, Gt>>>;Expand description
Represents type bounds, consisting of a colon followed by tokens until a comma, equals sign, or closing angle bracket is encountered.
Aliased Type§
pub struct Bounds {
pub first: Operator<':'>,
pub second: Repeats<1, usize::MAX, Cons<Except<Either<Operator<','>, Operator<'='>, Operator<'>'>>>, AngleTokenTree>>,
pub third: Nothing,
pub fourth: Nothing,
}Fields§
§first: Operator<':'>The first value
second: Repeats<1, usize::MAX, Cons<Except<Either<Operator<','>, Operator<'='>, Operator<'>'>>>, AngleTokenTree>>The second value
third: NothingThe third value
fourth: NothingThe fourth value