Struct rbspy_ruby_structs::ruby_2_1_8::rb_args_info[][src]

#[repr(C)]pub struct rb_args_info {
    pub pre_init: *mut NODE,
    pub post_init: *mut NODE,
    pub pre_args_num: c_int,
    pub post_args_num: c_int,
    pub first_post_arg: ID,
    pub rest_arg: ID,
    pub block_arg: ID,
    pub kw_args: *mut NODE,
    pub kw_rest_arg: *mut NODE,
    pub opt_args: *mut NODE,
}

Fields

pre_init: *mut NODEpost_init: *mut NODEpre_args_num: c_intpost_args_num: c_intfirst_post_arg: IDrest_arg: IDblock_arg: IDkw_args: *mut NODEkw_rest_arg: *mut NODEopt_args: *mut NODE

Trait Implementations

impl Clone for rb_args_info[src]

impl Copy for rb_args_info[src]

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