Enum mz_avro::types::Value

source ·
pub enum Value {
Show 19 variants Null, Boolean(bool), Int(i32), Long(i64), Float(f32), Double(f64), Date(i32), Timestamp(NaiveDateTime), Decimal(DecimalValue), Bytes(Vec<u8>), String(String), Fixed(usize, Vec<u8>), Enum(usize, String), Union { index: usize, inner: Box<Value>, n_variants: usize, null_variant: Option<usize>, }, Array(Vec<Value>), Map(BTreeMap<String, Value>), 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(i32)

A Date coming from an avro Logical Date, which is an i32 number of days since the Unix epoch.

§

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(usize, Vec<u8>)

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

§

Enum(usize, String)

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(BTreeMap<String, Value>)

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§

source§

impl Value

source

pub fn validate(&self, schema: SchemaNode<'_>) -> bool

Validate the value against the given Schema.

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

source

pub fn into_string(self) -> Option<String>

source

pub fn into_nullable_bool(self) -> Option<bool>

source

pub fn into_integral(self) -> Option<i64>

source

pub fn into_usize(self) -> Option<usize>

Trait Implementations§

source§

impl<'a> AvroDeserializer for &'a Value

source§

fn deserialize<R: AvroRead, D: AvroDecode>( self, _r: &mut R, d: D ) -> Result<D::Out, AvroError>

source§

impl Clone for Value

source§

fn clone(&self) -> Value

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Value

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Value

source§

fn default() -> Self

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

impl From<Scalar> for Value

source§

fn from(s: Scalar) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Value

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToAvro for Value

source§

fn avro(self) -> Value

Transforms this value into an Avro-compatible Value.
source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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