pub struct IMarshalingStream(/* private fields */);Implementations§
Source§impl IMarshalingStream
impl IMarshalingStream
pub unsafe fn Read( &self, pv: *mut c_void, cb: u32, pcbread: *mut u32, ) -> ErrorCode
pub unsafe fn Write( &self, pv: *const c_void, cb: u32, pcbwritten: *mut u32, ) -> ErrorCode
pub unsafe fn SetSize(&self, libnewsize: u64) -> ErrorCode
pub unsafe fn CopyTo<'a, T0__: IntoParam<'a, IStream>>( &self, pstm: T0__, cb: u64, pcbread: *mut u64, pcbwritten: *mut u64, ) -> ErrorCode
pub unsafe fn Commit(&self, grfcommitflags: u32) -> ErrorCode
pub unsafe fn Revert(&self) -> ErrorCode
pub unsafe fn LockRegion( &self, liboffset: u64, cb: u64, dwlocktype: u32, ) -> ErrorCode
pub unsafe fn UnlockRegion( &self, liboffset: u64, cb: u64, dwlocktype: u32, ) -> ErrorCode
pub unsafe fn Clone(&self, ppstm: *mut Option<IStream>) -> ErrorCode
pub unsafe fn GetMarshalingContextAttribute( &self, attribute: CO_MARSHALING_CONTEXT_ATTRIBUTES, pattributevalue: *mut usize, ) -> ErrorCode
Trait Implementations§
Source§impl Clone for IMarshalingStream
impl Clone for IMarshalingStream
Source§fn clone(&self) -> IMarshalingStream
fn clone(&self) -> IMarshalingStream
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 IMarshalingStream
impl Debug for IMarshalingStream
Source§impl From<&IMarshalingStream> for ISequentialStream
impl From<&IMarshalingStream> for ISequentialStream
Source§fn from(value: &IMarshalingStream) -> Self
fn from(value: &IMarshalingStream) -> Self
Converts to this type from the input type.
Source§impl From<&IMarshalingStream> for IStream
impl From<&IMarshalingStream> for IStream
Source§fn from(value: &IMarshalingStream) -> Self
fn from(value: &IMarshalingStream) -> Self
Converts to this type from the input type.
Source§impl From<&IMarshalingStream> for IUnknown
impl From<&IMarshalingStream> for IUnknown
Source§fn from(value: &IMarshalingStream) -> Self
fn from(value: &IMarshalingStream) -> Self
Converts to this type from the input type.
Source§impl From<IMarshalingStream> for ISequentialStream
impl From<IMarshalingStream> for ISequentialStream
Source§fn from(value: IMarshalingStream) -> Self
fn from(value: IMarshalingStream) -> Self
Converts to this type from the input type.
Source§impl From<IMarshalingStream> for IStream
impl From<IMarshalingStream> for IStream
Source§fn from(value: IMarshalingStream) -> Self
fn from(value: IMarshalingStream) -> Self
Converts to this type from the input type.
Source§impl From<IMarshalingStream> for IUnknown
impl From<IMarshalingStream> for IUnknown
Source§fn from(value: IMarshalingStream) -> Self
fn from(value: IMarshalingStream) -> Self
Converts to this type from the input type.
Source§impl Interface for IMarshalingStream
impl Interface for IMarshalingStream
const IID: Guid
type Vtable = IMarshalingStream_abi
Source§impl<'a> IntoParam<'a, ISequentialStream> for &'a IMarshalingStream
impl<'a> IntoParam<'a, ISequentialStream> for &'a IMarshalingStream
fn into_param(self) -> Param<'a, ISequentialStream>
Source§impl<'a> IntoParam<'a, ISequentialStream> for IMarshalingStream
impl<'a> IntoParam<'a, ISequentialStream> for IMarshalingStream
fn into_param(self) -> Param<'a, ISequentialStream>
Source§impl<'a> IntoParam<'a, IStream> for &'a IMarshalingStream
impl<'a> IntoParam<'a, IStream> for &'a IMarshalingStream
fn into_param(self) -> Param<'a, IStream>
Source§impl<'a> IntoParam<'a, IStream> for IMarshalingStream
impl<'a> IntoParam<'a, IStream> for IMarshalingStream
fn into_param(self) -> Param<'a, IStream>
Source§impl<'a> IntoParam<'a, IUnknown> for &'a IMarshalingStream
impl<'a> IntoParam<'a, IUnknown> for &'a IMarshalingStream
fn into_param(self) -> Param<'a, IUnknown>
Source§impl<'a> IntoParam<'a, IUnknown> for IMarshalingStream
impl<'a> IntoParam<'a, IUnknown> for IMarshalingStream
fn into_param(self) -> Param<'a, IUnknown>
Source§impl PartialEq for IMarshalingStream
impl PartialEq for IMarshalingStream
impl Eq for IMarshalingStream
impl StructuralPartialEq for IMarshalingStream
Auto Trait Implementations§
impl Freeze for IMarshalingStream
impl RefUnwindSafe for IMarshalingStream
impl !Send for IMarshalingStream
impl !Sync for IMarshalingStream
impl Unpin for IMarshalingStream
impl UnwindSafe for IMarshalingStream
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