Enum avro_rs::schema::Schema

source ·
pub enum Schema {
Show 14 variants Null, Boolean, Int, Long, Float, Double, Bytes, String, Array(Box<Schema>), Map(Box<Schema>), Union(UnionSchema), Record { name: Name, doc: Documentation, fields: Vec<RecordField>, lookup: HashMap<String, usize>, }, Enum { name: Name, doc: Documentation, symbols: Vec<String>, }, Fixed { name: Name, size: usize, },
}
Expand description

Represents any valid Avro schema More information about Avro schemas can be found in the Avro Specification

Variants§

§

Null

A null Avro schema.

§

Boolean

A boolean Avro schema.

§

Int

An int Avro schema.

§

Long

A long Avro schema.

§

Float

A float Avro schema.

§

Double

A double Avro schema.

§

Bytes

A bytes Avro schema. Bytes represents a sequence of 8-bit unsigned bytes.

§

String

A string Avro schema. String represents a unicode character sequence.

§

Array(Box<Schema>)

A array Avro schema. Avro arrays are required to have the same type for each element. This variant holds the Schema for the array element type.

§

Map(Box<Schema>)

A map Avro schema. Map holds a pointer to the Schema of its values, which must all be the same schema. Map keys are assumed to be string.

§

Union(UnionSchema)

A union Avro schema.

§

Record

Fields

§name: Name
§fields: Vec<RecordField>

A record Avro schema.

The lookup table maps field names to their position in the Vec of fields.

§

Enum

Fields

§name: Name
§symbols: Vec<String>

An enum Avro schema.

§

Fixed

Fields

§name: Name
§size: usize

A fixed Avro schema.

Implementations§

Create a Schema from a string representing a JSON Avro schema.

Create a Schema from a serde_json::Value representing a JSON Avro schema.

Converts self into its Parsing Canonical Form.

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
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. 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

Returns the argument unchanged.

Calls U::from(self).

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

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.