[][src]Struct libslang_sys::slang::SLang_Load_Type

#[repr(C)]pub struct SLang_Load_Type {
    pub type_: c_int,
    pub client_data: VOID_STAR,
    pub auto_declare_globals: c_int,
    pub read: Option<unsafe extern "C" fn(arg1: *mut SLang_Load_Type) -> *mut c_char>,
    pub line_num: c_uint,
    pub parse_level: c_int,
    pub name: *mut c_char,
    pub namespace_name: *mut c_char,
    pub reserved: [c_ulong; 3],
}

Fields

type_: c_intclient_data: VOID_STARauto_declare_globals: c_intread: Option<unsafe extern "C" fn(arg1: *mut SLang_Load_Type) -> *mut c_char>line_num: c_uintparse_level: c_intname: *mut c_charnamespace_name: *mut c_charreserved: [c_ulong; 3]

Trait Implementations

impl Clone for SLang_Load_Type[src]

impl Copy for SLang_Load_Type[src]

impl Debug for SLang_Load_Type[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, 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.