[][src]Struct libperl_sys::unop_aux

#[repr(C)]
pub struct unop_aux {
    pub op_next: *mut OP,
    pub op_sibparent: *mut OP,
    pub op_ppaddr: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter) -> *mut OP>,
    pub op_targ: PADOFFSET,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2], u16>,
    pub op_flags: U8,
    pub op_private: U8,
    pub op_first: *mut OP,
    pub op_aux: *mut UNOP_AUX_item,
}

Fields

op_next: *mut OPop_sibparent: *mut OPop_ppaddr: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter) -> *mut OP>op_targ: PADOFFSET_bitfield_1: __BindgenBitfieldUnit<[u8; 2], u16>op_flags: U8op_private: U8op_first: *mut OPop_aux: *mut UNOP_AUX_item

Methods

impl unop_aux[src]

pub fn op_type(&self) -> c_uint[src]

pub fn set_op_type(&mut self, val: c_uint)[src]

pub fn op_opt(&self) -> c_uint[src]

pub fn set_op_opt(&mut self, val: c_uint)[src]

pub fn op_slabbed(&self) -> c_uint[src]

pub fn set_op_slabbed(&mut self, val: c_uint)[src]

pub fn op_savefree(&self) -> c_uint[src]

pub fn set_op_savefree(&mut self, val: c_uint)[src]

pub fn op_static(&self) -> c_uint[src]

pub fn set_op_static(&mut self, val: c_uint)[src]

pub fn op_folded(&self) -> c_uint[src]

pub fn set_op_folded(&mut self, val: c_uint)[src]

pub fn op_moresib(&self) -> c_uint[src]

pub fn set_op_moresib(&mut self, val: c_uint)[src]

pub fn op_spare(&self) -> c_uint[src]

pub fn set_op_spare(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    op_type: c_uint,
    op_opt: c_uint,
    op_slabbed: c_uint,
    op_savefree: c_uint,
    op_static: c_uint,
    op_folded: c_uint,
    op_moresib: c_uint,
    op_spare: c_uint
) -> __BindgenBitfieldUnit<[u8; 2], u16>
[src]

Trait Implementations

impl Clone for unop_aux[src]

impl Copy for unop_aux[src]

impl Debug for unop_aux[src]

Auto Trait Implementations

impl !Send for unop_aux

impl Unpin for unop_aux

impl !Sync for unop_aux

impl UnwindSafe for unop_aux

impl RefUnwindSafe for unop_aux

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]