pub type NonNegativeInteger = NonNegative<Integer>;
Expand description

An Integer which is >= 0.

Aliased Type§

struct NonNegativeInteger(pub Integer);

Fields§

§0: Integer

Trait Implementations§

source§

impl Parse for NonNegativeInteger

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't> ) -> Result<Self, ParseError<'i>>

Parse a value of this type. Read more