#[repr(C)]pub struct Emojicode_Function {
pub argumentCount: c_int,
pub frameSize: c_int,
pub objectVariableRecords: *mut Emojicode_FunctionObjectVariableRecord,
pub objectVariableRecordsCount: c_uint,
pub context: ContextType,
pub block: Emojicode_Block,
pub handler: Emojicode_FunctionFunctionPointer,
}
Fields§
§argumentCount: c_int
Number of arguments taken by this function
frameSize: c_int
The frame size needed to execute this function.
objectVariableRecords: *mut Emojicode_FunctionObjectVariableRecord
§objectVariableRecordsCount: c_uint
§context: ContextType
§block: Emojicode_Block
§handler: Emojicode_FunctionFunctionPointer
A native function connect to this function
Trait Implementations§
Source§impl Clone for Emojicode_Function
impl Clone for Emojicode_Function
Source§fn clone(&self) -> Emojicode_Function
fn clone(&self) -> Emojicode_Function
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 Emojicode_Function
impl Debug for Emojicode_Function
impl Copy for Emojicode_Function
Auto Trait Implementations§
impl Freeze for Emojicode_Function
impl RefUnwindSafe for Emojicode_Function
impl !Send for Emojicode_Function
impl !Sync for Emojicode_Function
impl Unpin for Emojicode_Function
impl UnwindSafe for Emojicode_Function
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