#[repr(C)]pub struct ExportMemoryWin32HandleInfoKHR<'a> {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub p_attributes: *const SECURITY_ATTRIBUTES,
    pub dw_access: DWORD,
    pub name: LPCWSTR,
    pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *const c_void§p_attributes: *const SECURITY_ATTRIBUTES§dw_access: DWORD§name: LPCWSTR§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> ExportMemoryWin32HandleInfoKHR<'a>
 
impl<'a> ExportMemoryWin32HandleInfoKHR<'a>
pub fn attributes(self, attributes: &'a SECURITY_ATTRIBUTES) -> Self
pub fn dw_access(self, dw_access: DWORD) -> Self
pub fn name(self, name: LPCWSTR) -> Self
Trait Implementations§
Source§impl<'a> Clone for ExportMemoryWin32HandleInfoKHR<'a>
 
impl<'a> Clone for ExportMemoryWin32HandleInfoKHR<'a>
Source§fn clone(&self) -> ExportMemoryWin32HandleInfoKHR<'a>
 
fn clone(&self) -> ExportMemoryWin32HandleInfoKHR<'a>
Returns a duplicate 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<'a> Debug for ExportMemoryWin32HandleInfoKHR<'a>
 
impl<'a> Debug for ExportMemoryWin32HandleInfoKHR<'a>
Source§impl Default for ExportMemoryWin32HandleInfoKHR<'_>
 
impl Default for ExportMemoryWin32HandleInfoKHR<'_>
Source§impl<'a> TaggedStructure for ExportMemoryWin32HandleInfoKHR<'a>
 
impl<'a> TaggedStructure for ExportMemoryWin32HandleInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::EXPORT_MEMORY_WIN32_HANDLE_INFO_KHR
impl<'a> Copy for ExportMemoryWin32HandleInfoKHR<'a>
impl ExtendsMemoryAllocateInfo for ExportMemoryWin32HandleInfoKHR<'_>
impl Send for ExportMemoryWin32HandleInfoKHR<'_>
impl Sync for ExportMemoryWin32HandleInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for ExportMemoryWin32HandleInfoKHR<'a>
impl<'a> RefUnwindSafe for ExportMemoryWin32HandleInfoKHR<'a>
impl<'a> Unpin for ExportMemoryWin32HandleInfoKHR<'a>
impl<'a> UnwindSafe for ExportMemoryWin32HandleInfoKHR<'a>
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