[][src]Enum clang::OffsetofError

pub enum OffsetofError {
    Dependent,
    Incomplete,
    Name,
    Parent,
    Undeduced,
}

Indicates the error that prevented determining the offset of a field in a record type.

Variants

Dependent

The record type is a dependent type.

Incomplete

The record type is an incomplete type.

Name

The record type does not contain a field with the supplied name.

Parent

The record type has an invalid parent declaration.

Undeduced

The type is undeduced.

Trait Implementations

impl Clone for OffsetofError[src]

impl Copy for OffsetofError[src]

impl Debug for OffsetofError[src]

impl Display for OffsetofError[src]

impl Eq for OffsetofError[src]

impl Error for OffsetofError[src]

impl From<OffsetofError> for String[src]

impl Hash for OffsetofError[src]

impl PartialEq<OffsetofError> for OffsetofError[src]

impl StructuralEq for OffsetofError[src]

impl StructuralPartialEq for OffsetofError[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[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.