[][src]Struct dragnit::Def

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

Fields

name: Stringindex: i32kind: DefKindfields: Vec<Field>field_value_to_index: HashMap<u32, usize>field_name_to_index: HashMap<String, usize>

Methods

impl Def[src]

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

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

Trait Implementations

impl PartialEq<Def> for Def[src]

impl Debug for Def[src]

impl StructuralPartialEq for Def[src]

Auto Trait Implementations

impl Send for Def

impl Sync for Def

impl Unpin for Def

impl UnwindSafe for Def

impl RefUnwindSafe for Def

Blanket Implementations

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

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

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.

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

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

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