Expand description
serde related helper functions
Enums§
- Error while converting from or to serde values
Functions§
- Tries to convert a
BorrowedValueinto a struct that implements serde’s Deserialize interface - Tries to convert a
OwnedValueinto a struct that implements serde’s Deserialize interface - parses a Reader using a serde deserializer.
- Parses a Reader using a serde deserializer.
- Tries to convert a
&BorrowedValueinto a struct that implements serde’s Deserialize interface - Tries to convert a
&OwnedValueinto a struct that implements serde’s Deserialize interface - parses a byte slice using a serde deserializer. note that the slice will be rewritten in the process.
- Parses a byte slice using a serde deserializer. note that the slice will be rewritten in the process.
- Parses a str using a serde deserializer. note that the slice will be rewritten in the process and might not remain a valid utf8 string in its entirety.
- Parses a str using a serde deserializer. note that the slice will be rewritten in the process and might not remain a valid utf8 string in its entirety.
- Tries to convert a struct that implements serde’s serialize into an
BorrowedValue - Tries to convert a struct that implements serde’s serialize into an
OwnedValue - Write a value to a string
- Write a value to a string
- Write a value to a vector
- Write a value to a vector
- Write a value to a string
- Write a value to a string