Struct repr::adt::jsonb::JsonbPacker[][src]

pub struct JsonbPacker {
    row: Row,
}
Expand description

A JSON deserializer that decodes directly into an existing Row.

The JsonbPacker takes ownership of the Row and returns ownership after successfully packing one JSON object. Packing multiple JSON objects in sequence requires constructing multiple JsonbPackers. This somewhat irritating API is required to preserve the safety properties of the Row, which require that no one observe the state of the Row after a decoding error.

Fields

row: Row

Implementations

Constructs a new JsonbPacker that will pack into row.

Packs a serde_json::Value.

Errors if any of the contained integers cannot be represented exactly as an f64.

Parses and packs a JSON-formatted byte slice.

Errors if the slice is not valid JSON or if any of the contained integers cannot be represented exactly as an f64.

Parses and packs a JSON-formatted string.

Errors if the string is not valid or JSON or if any of the contained integers cannot be represented exactly as an f64.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more