pub struct IEnumPins(/* private fields */);
Available on crate feature
dshow
only.Expand description
IEnumPins
COM interface.
Automatically calls
IUnknown::Release
when the object goes out of scope.
Trait Implementations§
Source§impl dshow_IEnumPins for IEnumPins
impl dshow_IEnumPins for IEnumPins
Source§impl ole_IUnknown for IEnumPins
impl ole_IUnknown for IEnumPins
Source§unsafe fn from_ptr(p: *mut c_void) -> Self
unsafe fn from_ptr(p: *mut c_void) -> Self
Available on crate feature
ole
only.Creates an object from a COM virtual table pointer. Read more
Source§unsafe fn as_mut(&mut self) -> &mut *mut c_void
unsafe fn as_mut(&mut self) -> &mut *mut c_void
Available on crate feature
ole
only.Returns a mutable reference do the underlying COM virtual table pointer. Read more
Source§fn ptr(&self) -> *mut c_void
fn ptr(&self) -> *mut c_void
Available on crate feature
ole
only.Returns the pointer to the underlying COM virtual table. Read more
Source§unsafe fn null() -> Self
unsafe fn null() -> Self
Available on crate feature
ole
only.Creates an object from a null COM virtual table pointer. Read more
Source§fn QueryInterface<T>(&self) -> HrResult<T>where
T: ole_IUnknown,
fn QueryInterface<T>(&self) -> HrResult<T>where
T: ole_IUnknown,
Available on crate feature
ole
only.IUnknown::QueryInterface
method.impl Send for IEnumPins
Auto Trait Implementations§
impl Freeze for IEnumPins
impl RefUnwindSafe for IEnumPins
impl !Sync for IEnumPins
impl Unpin for IEnumPins
impl UnwindSafe for IEnumPins
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