Enum apache_avro::types::Value

source ·
pub enum Value {
Show 24 variants Null, Boolean(bool), Int(i32), Long(i64), Float(f32), Double(f64), Bytes(Vec<u8>), String(String), Fixed(usize, Vec<u8>), Enum(u32, String), Union(u32, Box<Value>), Array(Vec<Value>), Map(HashMap<String, Value>), Record(Vec<(String, Value)>), Date(i32), Decimal(Decimal), TimeMillis(i32), TimeMicros(i64), TimestampMillis(i64), TimestampMicros(i64), LocalTimestampMillis(i64), LocalTimestampMicros(i64), Duration(Duration), Uuid(Uuid),
}
Expand description

A 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.

§

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(u32, 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(u32, Box<Value>)

An union Avro value.

A Union is represented by the value it holds and its position in the type list of its corresponding schema This allows schema-less encoding, as well as schema resolution while reading values.

§

Array(Vec<Value>)

An array Avro value.

§

Map(HashMap<String, Value>)

A map Avro value.

§

Record(Vec<(String, Value)>)

A record Avro value.

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

See Record for a more user-friendly support.

§

Date(i32)

A date value.

Serialized and deserialized as i32 directly. Can only be deserialized properly with a schema.

§

Decimal(Decimal)

An Avro Decimal value. Bytes are in big-endian order, per the Avro spec.

§

TimeMillis(i32)

Time in milliseconds.

§

TimeMicros(i64)

Time in microseconds.

§

TimestampMillis(i64)

Timestamp in milliseconds.

§

TimestampMicros(i64)

Timestamp in microseconds.

§

LocalTimestampMillis(i64)

Local timestamp in milliseconds.

§

LocalTimestampMicros(i64)

Local timestamp in microseconds.

§

Duration(Duration)

Avro Duration. An amount of time defined by months, days and milliseconds.

§

Uuid(Uuid)

Universally unique identifier.

Implementations§

source§

impl Value

source

pub fn validate(&self, schema: &Schema) -> bool

Validate the value against the given Schema.

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

source

pub fn validate_schemata(&self, schemata: Vec<&Schema>) -> bool

source

pub fn resolve(self, schema: &Schema) -> AvroResult<Self>

Attempt to perform schema resolution on the value, with the given Schema.

See Schema Resolution in the Avro specification for the full set of rules of schema resolution.

source

pub fn resolve_schemata( self, schema: &Schema, schemata: Vec<&Schema> ) -> AvroResult<Self>

Attempt to perform schema resolution on the value, with the given Schema and set of schemas to use for Refs resolution.

See Schema Resolution in the Avro specification for the full set of rules of schema resolution.

Trait Implementations§

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 From<&[u8]> for Value

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl<'_enum> From<&'_enum Value> for ValueKind

source§

fn from(val: &'_enum Value) -> ValueKind

Converts to this type from the input type.
source§

impl From<&Value> for SchemaKind

source§

fn from(value: &Value) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl From<()> for Value

source§

fn from(_: ()) -> Self

Converts to this type from the input type.
source§

impl From<Codec> for Value

source§

fn from(value: Codec) -> Self

Converts to this type from the input type.
source§

impl From<Decimal> for Value

source§

fn from(value: Decimal) -> Self

Converts to this type from the input type.
source§

impl From<Duration> for Value

source§

fn from(value: Duration) -> Self

Converts to this type from the input type.
source§

impl<K, V, S> From<HashMap<K, V, S>> for Valuewhere K: Into<String>, V: Into<Self>, S: BuildHasher,

source§

fn from(value: HashMap<K, V, S>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Option<T>> for Valuewhere T: Into<Self>,

source§

fn from(value: Option<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<Record<'a>> for Value

source§

fn from(value: Record<'a>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl From<Uuid> for Value

source§

fn from(value: Uuid) -> Self

Converts to this type from the input type.
source§

impl From<Value> for Value

source§

fn from(value: JsonValue) -> Self

Converts to this type from the input type.
source§

impl From<Value> for ValueKind

source§

fn from(val: Value) -> ValueKind

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Value

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(value: usize) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Value> 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 TryFrom<Value> for Value

Convert Avro values to Json values

§

type Error = Error

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

fn try_from(value: Value) -> AvroResult<Self>

Performs the conversion.
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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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, U> Into<U> for Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToAvro for Twhere T: Into<Value>,

source§

fn avro(self) -> Value

👎Deprecated since 0.11.0: Please use Value::from, Into::into or value.into() instead
Transforms this value into an Avro-compatible Value.
source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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.
§

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

§

fn vzip(self) -> V