Function parseFromValueLeaky [src]

Alias for std.json.static.parseFromValueLeaky

Prototype

pub fn parseFromValueLeaky( comptime T: type, allocator: Allocator, source: Value, options: ParseOptions, ) ParseFromValueError!T

Parameters

T: typeallocator: Allocatorsource: Valueoptions: ParseOptions

Possible Errors

DuplicateField
InvalidCharacter ParseIntError

The input was empty or contained an invalid character

InvalidEnumTag
InvalidNumber
LengthMismatch
MissingField
OutOfMemory Error
Overflow ParseIntError

The result cannot fit in the type specified

UnexpectedToken
UnknownField

Source

pub fn parseFromValueLeaky( comptime T: type, allocator: Allocator, source: Value, options: ParseOptions, ) ParseFromValueError!T { // I guess this function doesn't need to exist, // but the flow of the sourcecode is easy to follow and grouped nicely with // this pub redirect function near the top and the implementation near the bottom. return innerParseFromValue(T, allocator, source, options); }