pub struct IITSourceCollection(/* private fields */);Expand description
IITSourceCollection Interface
See the generated IITSourceCollection_Impl trait for more documentation about each function.
Implementations§
Source§impl IITSourceCollection
impl IITSourceCollection
pub unsafe fn Count(&self, Count: *mut i32) -> HRESULT
pub unsafe fn Item( &self, Index: i32, iSource: *mut Option<IITSource>, ) -> HRESULT
pub unsafe fn ItemByName( &self, Name: BSTR, iSource: *mut Option<IITSource>, ) -> HRESULT
pub unsafe fn _NewEnum(&self, iEnumerator: *mut Option<IEnumVARIANT>) -> HRESULT
pub unsafe fn ItemByPersistentID( &self, highID: i32, lowID: i32, iSource: *mut Option<IITSource>, ) -> HRESULT
Trait Implementations§
Source§impl Clone for IITSourceCollection
impl Clone for IITSourceCollection
Source§impl Debug for IITSourceCollection
impl Debug for IITSourceCollection
Source§impl From<&IITSourceCollection> for IUnknown
impl From<&IITSourceCollection> for IUnknown
Source§fn from(value: &IITSourceCollection) -> Self
fn from(value: &IITSourceCollection) -> Self
Converts to this type from the input type.
Source§impl From<IITSourceCollection> for IUnknown
impl From<IITSourceCollection> for IUnknown
Source§fn from(value: IITSourceCollection) -> Self
fn from(value: IITSourceCollection) -> Self
Converts to this type from the input type.
Source§impl Interface for IITSourceCollection
impl Interface for IITSourceCollection
Source§impl PartialEq for IITSourceCollection
impl PartialEq for IITSourceCollection
Source§impl RuntimeName for IITSourceCollection
impl RuntimeName for IITSourceCollection
Source§impl Vtable for IITSourceCollection
impl Vtable for IITSourceCollection
type Vtable = IITSourceCollection_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.
impl Eq for IITSourceCollection
Auto Trait Implementations§
impl Freeze for IITSourceCollection
impl RefUnwindSafe for IITSourceCollection
impl !Send for IITSourceCollection
impl !Sync for IITSourceCollection
impl Unpin for IITSourceCollection
impl UnwindSafe for IITSourceCollection
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