#[repr(C)]pub struct SAFEARRAY {
pub cDims: u16,
pub fFeatures: u16,
pub cbElements: u32,
pub cLocks: u32,
pub pvData: *mut c_void,
pub rgsabound: [SAFEARRAYBOUND; 1],
}
Expand description
Required features: ‘Win32_System_Com’
Fields
cDims: u16
fFeatures: u16
cbElements: u32
cLocks: u32
pvData: *mut c_void
rgsabound: [SAFEARRAYBOUND; 1]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SAFEARRAY
impl !Send for SAFEARRAY
impl !Sync for SAFEARRAY
impl Unpin for SAFEARRAY
impl UnwindSafe for SAFEARRAY
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more