pub struct IMarshal(/* private fields */);Implementations§
Source§impl IMarshal
impl IMarshal
pub unsafe fn GetUnmarshalClass( &self, riid: *const Guid, pv: *mut c_void, dwdestcontext: u32, pvdestcontext: *mut c_void, mshlflags: u32, pcid: *mut Guid, ) -> ErrorCode
pub unsafe fn GetMarshalSizeMax( &self, riid: *const Guid, pv: *mut c_void, dwdestcontext: u32, pvdestcontext: *mut c_void, mshlflags: u32, psize: *mut u32, ) -> ErrorCode
pub unsafe fn MarshalInterface<'a, T0__: IntoParam<'a, IStream>>( &self, pstm: T0__, riid: *const Guid, pv: *mut c_void, dwdestcontext: u32, pvdestcontext: *mut c_void, mshlflags: u32, ) -> ErrorCode
pub unsafe fn UnmarshalInterface<'a, T0__: IntoParam<'a, IStream>>( &self, pstm: T0__, riid: *const Guid, ppv: *mut *mut c_void, ) -> ErrorCode
pub unsafe fn ReleaseMarshalData<'a, T0__: IntoParam<'a, IStream>>( &self, pstm: T0__, ) -> ErrorCode
pub unsafe fn DisconnectObject(&self, dwreserved: u32) -> ErrorCode
Trait Implementations§
Source§impl Interface for IMarshal
impl Interface for IMarshal
const IID: Guid
type Vtable = IMarshal_abi
Source§impl<'a> IntoParam<'a, IMarshal> for &'a IMarshal2
impl<'a> IntoParam<'a, IMarshal> for &'a IMarshal2
fn into_param(self) -> Param<'a, IMarshal>
Source§impl<'a> IntoParam<'a, IMarshal> for IMarshal2
impl<'a> IntoParam<'a, IMarshal> for IMarshal2
fn into_param(self) -> Param<'a, IMarshal>
Source§impl<'a> IntoParam<'a, IUnknown> for &'a IMarshal
impl<'a> IntoParam<'a, IUnknown> for &'a IMarshal
fn into_param(self) -> Param<'a, IUnknown>
Source§impl<'a> IntoParam<'a, IUnknown> for IMarshal
impl<'a> IntoParam<'a, IUnknown> for IMarshal
fn into_param(self) -> Param<'a, IUnknown>
impl Eq for IMarshal
impl StructuralPartialEq for IMarshal
Auto Trait Implementations§
impl Freeze for IMarshal
impl RefUnwindSafe for IMarshal
impl !Send for IMarshal
impl !Sync for IMarshal
impl Unpin for IMarshal
impl UnwindSafe for IMarshal
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
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