Struct avro_rs::types::Record

source ·
pub struct Record<'a> {
    pub fields: Vec<(String, Value)>,
    /* private fields */
}
Expand description

Utility interface to build Value::Record objects.

Fields§

§fields: Vec<(String, Value)>

List of fields contained in the record. Ordered according to the fields in the schema given to create this Record object. Any unset field defaults to Value::Null.

Implementations§

Create a Record given a Schema.

If the Schema is not a Schema::Record variant, None will be returned.

Put a compatible value (implementing the ToAvro trait) in the Record for a given field name.

NOTE Only ensure that the field name is present in the Schema given when creating this Record. Does not perform any schema validation.

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
Transforms this value into an Avro-compatible Value.

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.