Struct kiwi_schema::Def

source ·
pub struct Def {
    pub name: String,
    pub index: i32,
    pub kind: DefKind,
    pub fields: Vec<Field>,
    pub field_value_to_index: HashMap<u32, usize>,
    pub field_name_to_index: HashMap<String, usize>,
}
Expand description

Represents a single definition in a Schema. Kiwi enums, structs, and messages are all represented using this object.

Fields§

§name: String

The name of this field from the textual Kiwi schema.

§index: i32

The index of this Def in the defs field of the parent Schema. This is used as the type identifier for any fields with this type.

§kind: DefKind

Either Enum, Struct, or Message.

§fields: Vec<Field>

All fields in this definition. The order matters for struct definitions.

§field_value_to_index: HashMap<u32, usize>

Maps the value and name members of each Field in the fields array to its index in that array. This is helpful when decoding and encoding a field to be able to quickly get to the field metadata.

§field_name_to_index: HashMap<String, usize>

Implementations§

source§

impl Def

source

pub fn new(name: String, kind: DefKind, fields: Vec<Field>) -> Def

source

pub fn field(&self, name: &str) -> Option<&Field>

Returns the Field with the provided name if one exists.

Trait Implementations§

source§

impl Debug for Def

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Def> for Def

source§

fn eq(&self, other: &Def) -> 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 StructuralPartialEq for Def

Auto Trait Implementations§

§

impl RefUnwindSafe for Def

§

impl Send for Def

§

impl Sync for Def

§

impl Unpin for Def

§

impl UnwindSafe for Def

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