#[repr(C)]pub struct IDirectWriterLockVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> ULONG>,
pub WaitForWriteAccess: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock, dwTimeout: DWORD) -> HRESULT>,
pub ReleaseWriteAccess: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> HRESULT>,
pub HaveWriteAccess: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> ULONG>
§WaitForWriteAccess: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock, dwTimeout: DWORD) -> HRESULT>
§ReleaseWriteAccess: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> HRESULT>
§HaveWriteAccess: Option<unsafe extern "C" fn(This: *mut IDirectWriterLock) -> HRESULT>
Trait Implementations§
Source§impl Clone for IDirectWriterLockVtbl
impl Clone for IDirectWriterLockVtbl
Source§fn clone(&self) -> IDirectWriterLockVtbl
fn clone(&self) -> IDirectWriterLockVtbl
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 moreSource§impl Debug for IDirectWriterLockVtbl
impl Debug for IDirectWriterLockVtbl
Source§impl Ord for IDirectWriterLockVtbl
impl Ord for IDirectWriterLockVtbl
Source§fn cmp(&self, other: &IDirectWriterLockVtbl) -> Ordering
fn cmp(&self, other: &IDirectWriterLockVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IDirectWriterLockVtbl
impl PartialEq for IDirectWriterLockVtbl
Source§impl PartialOrd for IDirectWriterLockVtbl
impl PartialOrd for IDirectWriterLockVtbl
impl Copy for IDirectWriterLockVtbl
impl Eq for IDirectWriterLockVtbl
impl StructuralPartialEq for IDirectWriterLockVtbl
Auto Trait Implementations§
impl Freeze for IDirectWriterLockVtbl
impl RefUnwindSafe for IDirectWriterLockVtbl
impl Send for IDirectWriterLockVtbl
impl Sync for IDirectWriterLockVtbl
impl Unpin for IDirectWriterLockVtbl
impl UnwindSafe for IDirectWriterLockVtbl
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