[][src]Struct libperl_sys::mgvtbl

#[repr(C)]
pub struct mgvtbl {
    pub svt_get: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>,
    pub svt_set: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>,
    pub svt_len: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> U32>,
    pub svt_clear: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>,
    pub svt_free: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>,
    pub svt_copy: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC, nsv: *mut SV, name: *const c_char, namlen: I32) -> c_int>,
    pub svt_dup: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, mg: *mut MAGIC, param: *mut CLONE_PARAMS) -> c_int>,
    pub svt_local: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, nsv: *mut SV, mg: *mut MAGIC) -> c_int>,
}

Fields

svt_get: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>svt_set: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>svt_len: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> U32>svt_clear: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>svt_free: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC) -> c_int>svt_copy: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, sv: *mut SV, mg: *mut MAGIC, nsv: *mut SV, name: *const c_char, namlen: I32) -> c_int>svt_dup: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, mg: *mut MAGIC, param: *mut CLONE_PARAMS) -> c_int>svt_local: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, nsv: *mut SV, mg: *mut MAGIC) -> c_int>

Trait Implementations

impl Clone for mgvtbl[src]

impl Copy for mgvtbl[src]

impl Debug for mgvtbl[src]

Auto Trait Implementations

impl Send for mgvtbl

impl Unpin for mgvtbl

impl Sync for mgvtbl

impl UnwindSafe for mgvtbl

impl RefUnwindSafe for mgvtbl

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]