[][src]Struct vk_parse::Enums

pub struct Enums {
    pub name: Option<String>,
    pub kind: Option<String>,
    pub start: Option<i64>,
    pub end: Option<i64>,
    pub vendor: Option<String>,
    pub comment: Option<String>,
    pub children: Vec<EnumsChild>,
}

Fields

name: Option<String>kind: Option<String>start: Option<i64>end: Option<i64>vendor: Option<String>comment: Option<String>children: Vec<EnumsChild>

Trait Implementations

impl Clone for Enums[src]

impl Debug for Enums[src]

impl Default for Enums[src]

impl Eq for Enums[src]

impl PartialEq<Enums> for Enums[src]

impl StructuralEq for Enums[src]

impl StructuralPartialEq for Enums[src]

Auto Trait Implementations

impl RefUnwindSafe for Enums

impl Send for Enums

impl Sync for Enums

impl Unpin for Enums

impl UnwindSafe for Enums

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