pub enum Value {
Show 19 variants Null, Boolean(bool), Int(i32), Long(i64), Float(f32), Double(f64), Date(NaiveDate), Timestamp(NaiveDateTime), Decimal(DecimalValue), Bytes(Vec<u8>), String(String), Fixed(usizeVec<u8>), Enum(usizeString), Union { index: usize, inner: Box<Value>, n_variants: usize, null_variant: Option<usize>, }, Array(Vec<Value>), Map(AvroMap), Record(Vec<(String, Value)>), Json(Value), Uuid(Uuid),
}
Expand description

Represents any valid Avro value More information about Avro values can be found in the Avro Specification

Variants

Null

A null Avro value.

Boolean(bool)

A boolean Avro value.

Int(i32)

A int Avro value.

Long(i64)

A long Avro value.

Float(f32)

A float Avro value.

Double(f64)

A double Avro value.

Date(NaiveDate)

A Date coming from an avro Logical Date

Timestamp(NaiveDateTime)

A DateTime coming from an avro Logical Timestamp

Decimal(DecimalValue)

A decimal Avro value

The value of the decimal can be computed as follows: unscaled × 10-scale.

Bytes(Vec<u8>)

A bytes Avro value.

String(String)

A string Avro value.

Fixed(usizeVec<u8>)

A fixed Avro value. The size of the fixed value is represented as a usize.

Enum(usizeString)

An enum Avro value.

An Enum is represented by a symbol and its position in the symbols list of its corresponding schema. This allows schema-less encoding, as well as schema resolution while reading values.

Union

Fields

index: usize

The index of this variant in the reader schema

inner: Box<Value>

The value of the variant

n_variants: usize

The number of variants in the reader schema

null_variant: Option<usize>

Which variant is null in the reader schema.

An union Avro value.

Array(Vec<Value>)

An array Avro value.

Map(AvroMap)

A map Avro value.

Record(Vec<(String, Value)>)

A record Avro value.

A Record is represented by a vector of (<field name>, value). This allows schema-less encoding.

See Record for a more user-friendly support.

Json(Value)

A string Avro value that has been interpreted as JSON.

This is not part of the Avro spec, but is emitted by Debezium, and distinguished by setting the "connect.name" property to "io.debezium.data.Json".

Uuid(Uuid)

A Uuid coming from an avro Logical uuid.

Implementations

Validate the value against the given Schema.

See the Avro specification for the full set of rules of schema validation.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Transforms this value into an Avro-compatible Value.

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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