Type Function ParseError [src]

Alias for std.json.static.ParseError

The error set that will be returned when parsing from *Source. Note that this may contain error.BufferUnderrun, but that error will never actually be returned.

Prototype

pub fn ParseError(comptime Source: type) type

Parameters

Source: type

Source

pub fn ParseError(comptime Source: type) type { // A few of these will either always be present or present enough of the time that // omitting them is more confusing than always including them. return ParseFromValueError || Source.NextError || Source.PeekError || Source.AllocError; }