#[repr(C)]pub struct SECURITY_ATTRIBUTES {
pub nLength: u32,
pub lpSecurityDescriptor: *mut c_void,
pub bInheritHandle: BOOL,
}Fields§
§nLength: u32§lpSecurityDescriptor: *mut c_void§bInheritHandle: BOOLTrait Implementations§
Source§impl Abi for SECURITY_ATTRIBUTES
impl Abi for SECURITY_ATTRIBUTES
Source§type Abi = SECURITY_ATTRIBUTES
type Abi = SECURITY_ATTRIBUTES
The abi representation of the implementing type. Read more
type DefaultType = SECURITY_ATTRIBUTES
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType to Result<T>.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for SECURITY_ATTRIBUTES
impl Clone for SECURITY_ATTRIBUTES
Source§fn clone(&self) -> SECURITY_ATTRIBUTES
fn clone(&self) -> SECURITY_ATTRIBUTES
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 SECURITY_ATTRIBUTES
impl Debug for SECURITY_ATTRIBUTES
Source§impl Default for SECURITY_ATTRIBUTES
impl Default for SECURITY_ATTRIBUTES
Source§impl PartialEq for SECURITY_ATTRIBUTES
impl PartialEq for SECURITY_ATTRIBUTES
impl Copy for SECURITY_ATTRIBUTES
impl Eq for SECURITY_ATTRIBUTES
Auto Trait Implementations§
impl Freeze for SECURITY_ATTRIBUTES
impl RefUnwindSafe for SECURITY_ATTRIBUTES
impl !Send for SECURITY_ATTRIBUTES
impl !Sync for SECURITY_ATTRIBUTES
impl Unpin for SECURITY_ATTRIBUTES
impl UnwindSafe for SECURITY_ATTRIBUTES
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