[][src]Struct climeta::schema::TypeDef

pub struct TypeDef<'db>(_);

Methods

impl<'db> TypeDef<'db>[src]

pub fn flags(&self) -> Result<TypeAttributes, DecodeError>[src]

pub fn type_name(&self) -> Result<&'db str, DecodeError>[src]

pub fn type_namespace(&self) -> Result<&'db str, DecodeError>[src]

pub fn extends(&self) -> Result<Option<TypeDefOrRef<'db>>, DecodeError>[src]

pub fn field_list(&self) -> Result<TableRowIterator<'db, Field>, DecodeError>[src]

pub fn method_list(
    &self
) -> Result<TableRowIterator<'db, MethodDef>, DecodeError>
[src]

pub fn type_category(&self) -> Result<TypeCategory, DecodeError>[src]

pub fn is_enum(&self) -> bool[src]

pub fn is_interface(&self) -> bool[src]

Trait Implementations

impl<'db> TableAccess<'db, TypeDef<'db>> for Database<'db>[src]

impl<'db> TableRow for TypeDef<'db>[src]

type Kind = TypeDef

impl<'db> ResolveToTypeDef<'db> for TypeDef<'db>[src]

impl<'db> Clone for TypeDef<'db>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'db> Send for TypeDef<'db>

impl<'db> Sync for TypeDef<'db>

Blanket Implementations

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

impl<T> From<T> for 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.

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]

impl<T> Erased for T[src]