#[repr(C)]pub struct AddressTableRaw {
pub syscall_hostcall: unsafe extern "C" fn() -> !,
pub syscall_trap: unsafe extern "C" fn() -> !,
pub syscall_return: unsafe extern "C" fn() -> !,
pub syscall_step: unsafe extern "C" fn() -> !,
pub syscall_sbrk: unsafe extern "C" fn(u64) -> u32,
pub syscall_not_enough_gas: unsafe extern "C" fn() -> !,
}
Fields§
§syscall_hostcall: unsafe extern "C" fn() -> !
§syscall_trap: unsafe extern "C" fn() -> !
§syscall_return: unsafe extern "C" fn() -> !
§syscall_step: unsafe extern "C" fn() -> !
§syscall_sbrk: unsafe extern "C" fn(u64) -> u32
§syscall_not_enough_gas: unsafe extern "C" fn() -> !
Auto Trait Implementations§
impl Freeze for AddressTableRaw
impl RefUnwindSafe for AddressTableRaw
impl Send for AddressTableRaw
impl Sync for AddressTableRaw
impl Unpin for AddressTableRaw
impl UnwindSafe for AddressTableRaw
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