[][src]Struct smash::lua2cpp::L2CAgentBase

#[repr(C)]pub struct L2CAgentBase {
    pub agent: L2CAgent,
    pub unk48: [u64; 16],
}

Fields

agent: L2CAgentunk48: [u64; 16]

Methods

impl L2CAgentBase[src]

pub unsafe fn call_coroutine(&mut self, arg1: i32, arg2: Hash40) -> L2CValue[src]

pub unsafe fn change_context(
    &mut self,
    arg1: &mut BattleObject,
    arg2: &mut BattleObjectModuleAccessor
) -> L2CValue
[src]

pub unsafe fn clean_coroutine(&mut self, arg1: i32) -> L2CValue[src]

pub unsafe fn coroutine_yield_(&mut self) -> L2CValue[src]

pub unsafe fn start_coroutine(
    &mut self,
    arg1: i32,
    arg2: Hash40,
    arg3: u64
) -> L2CValue
[src]

pub unsafe fn resume_coroutine(&mut self, arg1: i32, arg2: u64) -> L2CValue[src]

pub unsafe fn sv_get_status_func(
    &mut self,
    arg1: &L2CValue,
    arg2: &L2CValue
) -> L2CValue
[src]

pub unsafe fn sv_set_status_func(
    &mut self,
    arg1: L2CValue,
    arg2: L2CValue,
    arg3: &mut c_void
) -> L2CValue
[src]

pub unsafe fn sv_copy_status_func(
    &mut self,
    arg1: u64,
    arg2: u64,
    arg3: u64
) -> L2CValue
[src]

pub unsafe fn sv_delete_status_func(&mut self, arg1: u64, arg2: u64) -> L2CValue[src]

pub unsafe fn reserve_status_data_array(&mut self, arg1: u32) -> L2CValue[src]

pub unsafe fn set_coroutine_release_control(&mut self, arg1: bool) -> L2CValue[src]

pub unsafe fn L2CAgentBase(
    &mut self,
    arg1: &mut BattleObject,
    arg2: &mut BattleObjectModuleAccessor,
    arg3: &mut lua_State
) -> L2CValue
[src]

pub unsafe fn destr_L2CAgentBase(&mut self) -> L2CValue[src]

pub unsafe fn get_parent_fiber(&mut self) -> L2CValue[src]

pub unsafe fn get_unused_coroutine_index(&mut self, arg1: i32) -> L2CValue[src]

pub unsafe fn is_coroutine_release_control(&mut self) -> L2CValue[src]

Methods from Deref<Target = L2CAgent>

pub unsafe fn L2CAgent_constr(&mut self, lua_state: u64) -> *mut L2CAgent[src]

pub unsafe fn push_lua_stack(&mut self, l2c_value: &mut L2CValue) -> u64[src]

pub unsafe fn pop_lua_stack(&mut self, index: c_int) -> L2CValue[src]

pub unsafe fn sv_set_function_hash(
    &mut self,
    func: unsafe extern "C" fn(arg1: *mut L2CAgent, arg2: *mut c_void) -> u64,
    hash: Hash40
)
[src]

pub unsafe fn clear_lua_stack(&mut self) -> u64[src]

pub unsafe fn _clear_lua_stack(&mut self) -> u64[src]

Trait Implementations

impl Clone for L2CAgentBase[src]

impl Copy for L2CAgentBase[src]

impl Debug for L2CAgentBase[src]

impl Deref for L2CAgentBase[src]

type Target = L2CAgent

The resulting type after dereferencing.

impl DerefMut for L2CAgentBase[src]

Auto Trait Implementations

impl RefUnwindSafe for L2CAgentBase

impl !Send for L2CAgentBase

impl !Sync for L2CAgentBase

impl Unpin for L2CAgentBase

impl UnwindSafe for L2CAgentBase

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.