[][src]Union libperl_sys::XOPRETANY

#[repr(C)]
pub union XOPRETANY {
    pub xop_name: *const c_char,
    pub xop_desc: *const c_char,
    pub xop_class: U32,
    pub xop_peep: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, o: *mut OP, oldop: *mut OP)>,
    pub xop_ptr: *mut XOP,
    // some fields omitted
}

Fields

xop_name: *const c_charxop_desc: *const c_charxop_class: U32xop_peep: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, o: *mut OP, oldop: *mut OP)>xop_ptr: *mut XOP

Trait Implementations

impl Clone for XOPRETANY[src]

impl Copy for XOPRETANY[src]

Auto Trait Implementations

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]