Struct IUNKNOWN_LIST
#[repr(C)]pub struct IUNKNOWN_LIST {
pub lpLink: *mut IUNKNOWN_LIST,
pub lpGuid: *mut GUID,
pub lpIUnknown: ManuallyDrop<Option<IUnknown>>,
}
Fields§
§lpLink: *mut IUNKNOWN_LIST
§lpGuid: *mut GUID
§lpIUnknown: ManuallyDrop<Option<IUnknown>>
Trait Implementations§
§impl Clone for IUNKNOWN_LIST
impl Clone for IUNKNOWN_LIST
§fn clone(&self) -> IUNKNOWN_LIST
fn clone(&self) -> IUNKNOWN_LIST
Returns a copy 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 more§impl Debug for IUNKNOWN_LIST
impl Debug for IUNKNOWN_LIST
§impl Default for IUNKNOWN_LIST
impl Default for IUNKNOWN_LIST
§impl PartialEq for IUNKNOWN_LIST
impl PartialEq for IUNKNOWN_LIST
impl StructuralPartialEq for IUNKNOWN_LIST
Auto Trait Implementations§
impl Freeze for IUNKNOWN_LIST
impl RefUnwindSafe for IUNKNOWN_LIST
impl !Send for IUNKNOWN_LIST
impl !Sync for IUNKNOWN_LIST
impl Unpin for IUNKNOWN_LIST
impl UnwindSafe for IUNKNOWN_LIST
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