#[repr(C)]pub struct listop {
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_align_1: [u16; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>,
pub op_flags: U8,
pub op_private: U8,
pub op_first: *mut OP,
pub op_last: *mut OP,
}Fields§
§op_next: *mut OP§op_sibparent: *mut OP§op_ppaddr: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter) -> *mut OP>§op_targ: PADOFFSET§_bitfield_align_1: [u16; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 2]>§op_flags: U8§op_private: U8§op_first: *mut OP§op_last: *mut OPImplementations§
Source§impl listop
impl listop
pub fn op_type(&self) -> U16
pub fn set_op_type(&mut self, val: U16)
pub unsafe fn op_type_raw(this: *const Self) -> U16
pub unsafe fn set_op_type_raw(this: *mut Self, val: U16)
pub fn op_opt(&self) -> U16
pub fn set_op_opt(&mut self, val: U16)
pub unsafe fn op_opt_raw(this: *const Self) -> U16
pub unsafe fn set_op_opt_raw(this: *mut Self, val: U16)
pub fn op_slabbed(&self) -> U16
pub fn set_op_slabbed(&mut self, val: U16)
pub unsafe fn op_slabbed_raw(this: *const Self) -> U16
pub unsafe fn set_op_slabbed_raw(this: *mut Self, val: U16)
pub fn op_savefree(&self) -> U16
pub fn set_op_savefree(&mut self, val: U16)
pub unsafe fn op_savefree_raw(this: *const Self) -> U16
pub unsafe fn set_op_savefree_raw(this: *mut Self, val: U16)
pub fn op_static(&self) -> U16
pub fn set_op_static(&mut self, val: U16)
pub unsafe fn op_static_raw(this: *const Self) -> U16
pub unsafe fn set_op_static_raw(this: *mut Self, val: U16)
pub fn op_folded(&self) -> U16
pub fn set_op_folded(&mut self, val: U16)
pub unsafe fn op_folded_raw(this: *const Self) -> U16
pub unsafe fn set_op_folded_raw(this: *mut Self, val: U16)
pub fn op_moresib(&self) -> U16
pub fn set_op_moresib(&mut self, val: U16)
pub unsafe fn op_moresib_raw(this: *const Self) -> U16
pub unsafe fn set_op_moresib_raw(this: *mut Self, val: U16)
pub fn op_spare(&self) -> U16
pub fn set_op_spare(&mut self, val: U16)
pub unsafe fn op_spare_raw(this: *const Self) -> U16
pub unsafe fn set_op_spare_raw(this: *mut Self, val: U16)
pub fn new_bitfield_1( op_type: U16, op_opt: U16, op_slabbed: U16, op_savefree: U16, op_static: U16, op_folded: U16, op_moresib: U16, op_spare: U16, ) -> __BindgenBitfieldUnit<[u8; 2]>
Trait Implementations§
Source§impl Ord for listop
impl Ord for listop
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for listop
impl PartialOrd for listop
impl Copy for listop
impl Eq for listop
impl StructuralPartialEq for listop
Auto Trait Implementations§
impl Freeze for listop
impl RefUnwindSafe for listop
impl !Send for listop
impl !Sync for listop
impl Unpin for listop
impl UnsafeUnpin for listop
impl UnwindSafe for listop
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more