[][src]Struct avro_rs::schema::RecordField

pub struct RecordField {
    pub name: String,
    pub doc: Documentation,
    pub default: Option<Value>,
    pub schema: Schema,
    pub order: RecordFieldOrder,
    pub position: usize,
}

Represents a field in a record Avro schema.

Fields

name: String

Name of the field.

doc: Documentation

Documentation of the field.

default: Option<Value>

Default value of the field. This value will be used when reading Avro datum if schema resolution is enabled.

schema: Schema

Schema of the field.

order: RecordFieldOrder

Order of the field.

NOTE This currently has no effect.

position: usize

Position of the field in the list of field of its parent Schema

Trait Implementations

impl Clone for RecordField[src]

impl Debug for RecordField[src]

impl PartialEq<RecordField> for RecordField[src]

impl Serialize for RecordField[src]

impl StructuralPartialEq for RecordField[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.