avro_rs::types

Enum Value

Source
pub enum Value {
Show 22 variants Null, Boolean(bool), Int(i32), Long(i64), Float(f32), Double(f64), Bytes(Vec<u8>), String(String), Fixed(usize, Vec<u8>), Enum(i32, String), Union(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), 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(i32, 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(Box<Value>)

An union Avro value.

§

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.

§

Duration(Duration)

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

§

Uuid(Uuid)

Universally unique identifier. 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 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.

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<'a> From<&'a Value> for SchemaKind

Source§

fn from(value: &'a Value) -> 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<&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 Value
where 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 Value
where 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>> 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 for Value

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Source§

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 Freeze for Value

§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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 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

Source§

type Output = T

Should always be Self
Source§

impl<T> ToAvro for T
where 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 T
where T: Clone,

Source§

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>,

Source§

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>,

Source§

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