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: type
allocator: Allocator
source: Value
options: ParseOptions
Possible Errors
The input was empty or contained an invalid character
The result cannot fit in the type specified
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);
}