#[repr(C)]pub struct Perl_custom_infix {
pub prec: Perl_custom_infix_precedence,
pub parse: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, opdata: *mut *mut SV, arg1: *mut Perl_custom_infix)>,
pub build_op: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, opdata: *mut *mut SV, lhs: *mut OP, rhs: *mut OP, arg1: *mut Perl_custom_infix) -> *mut OP>,
}
Fields§
§prec: Perl_custom_infix_precedence
§parse: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, opdata: *mut *mut SV, arg1: *mut Perl_custom_infix)>
§build_op: Option<unsafe extern "C" fn(my_perl: *mut PerlInterpreter, opdata: *mut *mut SV, lhs: *mut OP, rhs: *mut OP, arg1: *mut Perl_custom_infix) -> *mut OP>
Trait Implementations§
Source§impl Clone for Perl_custom_infix
impl Clone for Perl_custom_infix
Source§fn clone(&self) -> Perl_custom_infix
fn clone(&self) -> Perl_custom_infix
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Perl_custom_infix
impl Debug for Perl_custom_infix
impl Copy for Perl_custom_infix
Auto Trait Implementations§
impl Freeze for Perl_custom_infix
impl RefUnwindSafe for Perl_custom_infix
impl Send for Perl_custom_infix
impl Sync for Perl_custom_infix
impl Unpin for Perl_custom_infix
impl UnwindSafe for Perl_custom_infix
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