Expand description
OVER: the best data format.
Re-exports§
Modules§
- arr
Arrmodule. An array container which can hold an arbitrary number of elements of a single type.- error
- Error module.
- macros
- Module containing crate macros.
- obj
Objmodule. A hashmap of keys to values, where values can be any type, including other objects.- tup
Tupmodule. A tuple container which can hold elements of different types.- types
- Module for types.
- value
- Module for values.
Macros§
- arr
- Given a list of elements, converts each element to a
Valueand returns anArrcontaining a vector of the values. For a non-panicking version, seetry_arr!. - frac
- Given two ints, creates and returns a
BigRational. - int
- Given an int, creates and returns a
BigInt. - obj
- Given a list of field/value pairs, returns an
Objcontaining each pair. For a non-panicking version, seetry_obj!. - try_arr
- Given a list of elements, converts each element to a
Valueand returns anArrcontaining a vector of the values. Returns anOverResultinstead of panicking on error. To create an emptyArr, usearr!as it will never fail. - try_obj
- Given a list of field to
Valuepairs, returns anObjwith the fields and values. Returns anOverResultinstead of panicking on error. To create an emptyObj, useobj!as it will never fail. - tup
- Given a list of elements, converts each element to
Values and returns aTupcontaining a vector of the values.
Type Aliases§
- Over
Result - Result type for this crate.