pub struct MemoryViewVtbl<'cglue_a, CGlueC: 'cglue_a + CGlueObjBase> { /* private fields */ }Expand description
CGlue vtable for trait MemoryView.
This virtual function table contains ABI-safe interface for the given trait.
Implementations§
Source§impl<'cglue_a, CGlueC: CGlueObjBase> MemoryViewVtbl<'cglue_a, CGlueC>
impl<'cglue_a, CGlueC: CGlueObjBase> MemoryViewVtbl<'cglue_a, CGlueC>
Sourcepub fn read_raw_iter(
&self,
) -> unsafe extern "C" fn(cont: &mut CGlueC, data: ReadRawMemOps<'_, '_, '_, '_>) -> i32
pub fn read_raw_iter( &self, ) -> unsafe extern "C" fn(cont: &mut CGlueC, data: ReadRawMemOps<'_, '_, '_, '_>) -> i32
Getter for read_raw_iter.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn write_raw_iter(
&self,
) -> unsafe extern "C" fn(cont: &mut CGlueC, data: WriteRawMemOps<'_, '_, '_, '_>) -> i32
pub fn write_raw_iter( &self, ) -> unsafe extern "C" fn(cont: &mut CGlueC, data: WriteRawMemOps<'_, '_, '_, '_>) -> i32
Getter for write_raw_iter.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn metadata(
&self,
) -> unsafe extern "C" fn(cont: &CGlueC) -> MemoryViewMetadata
pub fn metadata( &self, ) -> unsafe extern "C" fn(cont: &CGlueC) -> MemoryViewMetadata
Getter for metadata.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn read_iter(
&self,
) -> for<'a, 'b> unsafe extern "C" fn(cont: &mut CGlueC, inp: CIterator<'_, ReadData<'a>>, out: Option<&mut ReadCallback<'b, 'a>>, out_fail: Option<&mut ReadCallback<'b, 'a>>) -> i32
pub fn read_iter( &self, ) -> for<'a, 'b> unsafe extern "C" fn(cont: &mut CGlueC, inp: CIterator<'_, ReadData<'a>>, out: Option<&mut ReadCallback<'b, 'a>>, out_fail: Option<&mut ReadCallback<'b, 'a>>) -> i32
Getter for read_iter.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn read_raw_list(
&self,
) -> unsafe extern "C" fn(cont: &mut CGlueC, data: CSliceMut<'_, ReadData<'_>>) -> i32
pub fn read_raw_list( &self, ) -> unsafe extern "C" fn(cont: &mut CGlueC, data: CSliceMut<'_, ReadData<'_>>) -> i32
Getter for read_raw_list.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn read_raw_into(
&self,
) -> unsafe extern "C" fn(cont: &mut CGlueC, addr: Address, out: CSliceMut<'_, u8>) -> i32
pub fn read_raw_into( &self, ) -> unsafe extern "C" fn(cont: &mut CGlueC, addr: Address, out: CSliceMut<'_, u8>) -> i32
Getter for read_raw_into.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn write_iter(
&self,
) -> for<'a, 'b> unsafe extern "C" fn(cont: &mut CGlueC, inp: CIterator<'_, WriteData<'a>>, out: Option<&mut WriteCallback<'b, 'a>>, out_fail: Option<&mut WriteCallback<'b, 'a>>) -> i32
pub fn write_iter( &self, ) -> for<'a, 'b> unsafe extern "C" fn(cont: &mut CGlueC, inp: CIterator<'_, WriteData<'a>>, out: Option<&mut WriteCallback<'b, 'a>>, out_fail: Option<&mut WriteCallback<'b, 'a>>) -> i32
Getter for write_iter.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Sourcepub fn write_raw_list(
&self,
) -> unsafe extern "C" fn(cont: &mut CGlueC, data: CSliceRef<'_, WriteData<'_>>) -> i32
pub fn write_raw_list( &self, ) -> unsafe extern "C" fn(cont: &mut CGlueC, data: CSliceRef<'_, WriteData<'_>>) -> i32
Getter for write_raw_list.
Note that this function is wrapped into unsafe, because if already were is an opaque one, it would allow to invoke undefined behaviour.
Trait Implementations§
Source§impl<'cglue_a, CGlueC: Opaquable + CGlueObjBase + 'cglue_a> CGlueBaseVtbl for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC::OpaqueTarget: Opaquable + CGlueObjBase + GenericTypeBounds,
CGlueC::ObjType: MemoryView,
MemoryViewVtbl<'cglue_a, CGlueC::OpaqueTarget>: StableAbi,
impl<'cglue_a, CGlueC: Opaquable + CGlueObjBase + 'cglue_a> CGlueBaseVtbl for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC::OpaqueTarget: Opaquable + CGlueObjBase + GenericTypeBounds,
CGlueC::ObjType: MemoryView,
MemoryViewVtbl<'cglue_a, CGlueC::OpaqueTarget>: StableAbi,
type OpaqueVtbl = MemoryViewVtbl<'cglue_a, <CGlueC as Opaquable>::OpaqueTarget>
type Context = <CGlueC as CGlueObjBase>::Context
type RetTmp = PhantomData<MemoryViewRetTmpPhantom<<CGlueC as CGlueObjBase>::Context>>
Source§fn as_opaque(&self) -> &Self::OpaqueVtbl
fn as_opaque(&self) -> &Self::OpaqueVtbl
impl<'cglue_a, CGlueC, CGlueCtx: ContextBounds> CGlueVtbl<CGlueC> for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC::OpaqueTarget: Opaquable + CGlueObjBase + GenericTypeBounds,
CGlueC: Opaquable + CGlueObjMut<MemoryViewRetTmp<CGlueCtx>, Context = CGlueCtx> + 'cglue_a,
CGlueC::ObjType: MemoryView,
Source§impl<'cglue_a, CGlueC: CGlueObjBase> CGlueVtblCont for MemoryViewVtbl<'cglue_a, CGlueC>
impl<'cglue_a, CGlueC: CGlueObjBase> CGlueVtblCont for MemoryViewVtbl<'cglue_a, CGlueC>
Source§impl<'cglue_a, CGlueC, CGlueCtx: ContextBounds> Default for &'cglue_a MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC::ObjType: MemoryView,
CGlueC: Opaquable + CGlueObjMut<MemoryViewRetTmp<CGlueCtx>, Context = CGlueCtx> + 'cglue_a,
CGlueC::OpaqueTarget: GenericTypeBounds,
MemoryViewVtbl<'cglue_a, CGlueC>: CGlueBaseVtbl,
Default vtable reference creation.
impl<'cglue_a, CGlueC, CGlueCtx: ContextBounds> Default for &'cglue_a MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC::ObjType: MemoryView,
CGlueC: Opaquable + CGlueObjMut<MemoryViewRetTmp<CGlueCtx>, Context = CGlueCtx> + 'cglue_a,
CGlueC::OpaqueTarget: GenericTypeBounds,
MemoryViewVtbl<'cglue_a, CGlueC>: CGlueBaseVtbl,
Default vtable reference creation.
Source§impl<'cglue_a, CGlueC> GetStaticEquivalent_ for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: __StableAbi + 'cglue_a + CGlueObjBase,
impl<'cglue_a, CGlueC> GetStaticEquivalent_ for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: __StableAbi + 'cglue_a + CGlueObjBase,
type StaticEquivalent = _static_MemoryViewVtbl<'static, <CGlueC as GetStaticEquivalent_>::StaticEquivalent>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>> for IntoProcessInstance<'cglue_a, CGlueInst, CGlueCtx>where
IntoProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>> for IntoProcessInstance<'cglue_a, CGlueInst, CGlueCtx>where
IntoProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>> for IntoProcessInstanceFinalWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
IntoProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>> for IntoProcessInstanceFinalWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
IntoProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>> for IntoProcessInstanceWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
IntoProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>> for IntoProcessInstanceWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
IntoProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, IntoProcessInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryView<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryView<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboard<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboard<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboardPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboardPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboardPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboardPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboardVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewOsKeyboardVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceFinalWithMemoryViewVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryView<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryView<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboard<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboard<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboardPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboardPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboardPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboardPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboardVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewOsKeyboardVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewPhysicalMemory<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewPhysicalMemoryVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>> for OsInstanceWithMemoryViewVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
OsInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, OsInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>> for ProcessInstance<'cglue_a, CGlueInst, CGlueCtx>where
ProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>> for ProcessInstance<'cglue_a, CGlueInst, CGlueCtx>where
ProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>> for ProcessInstanceFinalWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
ProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>> for ProcessInstanceFinalWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
ProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>> for ProcessInstanceWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
ProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
impl<'cglue_a, CGlueInst, CGlueCtx: ContextBounds> GetVtbl<MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>> for ProcessInstanceWithVirtualTranslate<'cglue_a, CGlueInst, CGlueCtx>where
ProcessInstanceContainer<CGlueInst, CGlueCtx>: CGlueObjBase,
fn get_vtbl( &self, ) -> &MemoryViewVtbl<'cglue_a, ProcessInstanceContainer<CGlueInst, CGlueCtx>>
Source§impl<'cglue_a, CGlueC> StableAbi for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: __StableAbi + 'cglue_a + CGlueObjBase,
impl<'cglue_a, CGlueC> StableAbi for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: __StableAbi + 'cglue_a + CGlueObjBase,
Source§const LAYOUT: &'static TypeLayout
const LAYOUT: &'static TypeLayout
Source§type IsNonZeroType = False
type IsNonZeroType = False
Source§const ABI_CONSTS: AbiConsts = _
const ABI_CONSTS: AbiConsts = _
const-equivalents of the associated types.Auto Trait Implementations§
impl<'cglue_a, CGlueC> Freeze for MemoryViewVtbl<'cglue_a, CGlueC>
impl<'cglue_a, CGlueC> RefUnwindSafe for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: RefUnwindSafe,
impl<'cglue_a, CGlueC> Send for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: Sync,
impl<'cglue_a, CGlueC> Sync for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: Sync,
impl<'cglue_a, CGlueC> Unpin for MemoryViewVtbl<'cglue_a, CGlueC>
impl<'cglue_a, CGlueC> UnsafeUnpin for MemoryViewVtbl<'cglue_a, CGlueC>
impl<'cglue_a, CGlueC> UnwindSafe for MemoryViewVtbl<'cglue_a, CGlueC>where
CGlueC: RefUnwindSafe,
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
impl<T> GenericTypeBounds for Twhere
T: StableAbi,
Source§impl<T> GetWithMetadata for T
impl<T> GetWithMetadata for T
Source§type ForSelf = WithMetadata_<T, T>
type ForSelf = WithMetadata_<T, T>
WithMetadata_<Self, Self>Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreimpl<T> OpaqueVtblBounds for Twhere
T: CGlueVtblCont + StableAbi,
Source§impl<S> ROExtAcc for S
impl<S> ROExtAcc for S
Source§fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F
fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F
offset. Read moreSource§fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F
fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F
offset. Read moreSource§fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F
fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F
offset. Read moreSource§fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F
fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F
offset. Read moreSource§impl<S> ROExtOps<Aligned> for S
impl<S> ROExtOps<Aligned> for S
Source§fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F
offset) with value,
returning the previous value of the field. Read moreSource§fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> Fwhere
F: Copy,
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> Fwhere
F: Copy,
Source§impl<S> ROExtOps<Unaligned> for S
impl<S> ROExtOps<Unaligned> for S
Source§fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F
offset) with value,
returning the previous value of the field. Read moreSource§fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> Fwhere
F: Copy,
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> Fwhere
F: Copy,
Source§impl<T> SelfOps for Twhere
T: ?Sized,
impl<T> SelfOps for Twhere
T: ?Sized,
Source§fn piped<F, U>(self, f: F) -> U
fn piped<F, U>(self, f: F) -> U
Source§fn piped_ref<'a, F, U>(&'a self, f: F) -> Uwhere
F: FnOnce(&'a Self) -> U,
fn piped_ref<'a, F, U>(&'a self, f: F) -> Uwhere
F: FnOnce(&'a Self) -> U,
piped except that the function takes &Self
Useful for functions that take &Self instead of Self. Read moreSource§fn piped_mut<'a, F, U>(&'a mut self, f: F) -> Uwhere
F: FnOnce(&'a mut Self) -> U,
fn piped_mut<'a, F, U>(&'a mut self, f: F) -> Uwhere
F: FnOnce(&'a mut Self) -> U,
piped, except that the function takes &mut Self.
Useful for functions that take &mut Self instead of Self.Source§fn mutated<F>(self, f: F) -> Self
fn mutated<F>(self, f: F) -> Self
Source§fn observe<F>(self, f: F) -> Self
fn observe<F>(self, f: F) -> Self
Source§fn as_ref_<T>(&self) -> &T
fn as_ref_<T>(&self) -> &T
AsRef,
using the turbofish .as_ref_::<_>() syntax. Read more