#[repr(C)]pub struct RuntimeReadContextV1 {
pub ctx_ptr: *mut c_void,
pub vtable: *const RuntimeReadVTableV1,
}Expand description
ABI handle for read-only runtime host access.
Fields§
§ctx_ptr: *mut c_voidHost context pointer.
vtable: *const RuntimeReadVTableV1Read-only host vtable pointer.
Trait Implementations§
Source§impl Clone for RuntimeReadContextV1
impl Clone for RuntimeReadContextV1
Source§fn clone(&self) -> RuntimeReadContextV1
fn clone(&self) -> RuntimeReadContextV1
Returns a duplicate 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 RuntimeReadContextV1
impl Debug for RuntimeReadContextV1
impl Copy for RuntimeReadContextV1
Auto Trait Implementations§
impl Freeze for RuntimeReadContextV1
impl RefUnwindSafe for RuntimeReadContextV1
impl !Send for RuntimeReadContextV1
impl !Sync for RuntimeReadContextV1
impl Unpin for RuntimeReadContextV1
impl UnsafeUnpin for RuntimeReadContextV1
impl UnwindSafe for RuntimeReadContextV1
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