[][src]Struct vk_parse::Unused

pub struct Unused {
    pub start: i64,
    pub end: Option<i64>,
    pub vendor: Option<String>,
    pub comment: Option<String>,
}

An unused range of enum values.

Fields

start: i64

Beginning of the range.

end: Option<i64>

Ending value of the range, if any.

vendor: Option<String>

Vendor who reserved this range.

comment: Option<String>

Human-readable description.

Trait Implementations

impl Clone for Unused[src]

impl Debug for Unused[src]

impl Default for Unused[src]

impl Eq for Unused[src]

impl PartialEq<Unused> for Unused[src]

impl StructuralEq for Unused[src]

impl StructuralPartialEq for Unused[src]

Auto Trait Implementations

impl RefUnwindSafe for Unused

impl Send for Unused

impl Sync for Unused

impl Unpin for Unused

impl UnwindSafe for Unused

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.