pub struct IWpdSerializer(/* private fields */);Implementations§
Source§impl IWpdSerializer
impl IWpdSerializer
pub unsafe fn GetIPortableDeviceValuesFromBuffer( &self, pbuffer: &[u8], ) -> Result<IPortableDeviceValues, Error>
pub unsafe fn WriteIPortableDeviceValuesToBuffer<P0>(
&self,
presults: P0,
pbuffer: &mut [u8],
pdwbyteswritten: *mut u32,
) -> Result<(), Error>where
P0: IntoParam<IPortableDeviceValues>,
pub unsafe fn GetBufferFromIPortableDeviceValues<P0>(
&self,
psource: P0,
ppbuffer: *mut *mut u8,
pdwbuffersize: *mut u32,
) -> Result<(), Error>where
P0: IntoParam<IPortableDeviceValues>,
pub unsafe fn GetSerializedSize<P0>(&self, psource: P0) -> Result<u32, Error>where
P0: IntoParam<IPortableDeviceValues>,
Trait Implementations§
Source§impl Clone for IWpdSerializer
impl Clone for IWpdSerializer
Source§fn clone(&self) -> IWpdSerializer
fn clone(&self) -> IWpdSerializer
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 ComInterface for IWpdSerializer
impl ComInterface for IWpdSerializer
fn as_unknown(&self) -> &IUnknown
Source§fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
Attempts to cast the current interface to another interface using
QueryInterface. Read moreSource§impl Debug for IWpdSerializer
impl Debug for IWpdSerializer
Source§impl Interface for IWpdSerializer
impl Interface for IWpdSerializer
type Vtable = IWpdSerializer_Vtbl
Source§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.Source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
Source§impl PartialEq for IWpdSerializer
impl PartialEq for IWpdSerializer
impl Eq for IWpdSerializer
impl StructuralPartialEq for IWpdSerializer
Auto Trait Implementations§
impl Freeze for IWpdSerializer
impl RefUnwindSafe for IWpdSerializer
impl !Send for IWpdSerializer
impl !Sync for IWpdSerializer
impl Unpin for IWpdSerializer
impl UnwindSafe for IWpdSerializer
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