#[repr(C)]pub struct SE_ACCESS_REQUEST {
pub Size: u32,
pub SeSecurityDescriptor: *mut SE_SECURITY_DESCRIPTOR,
pub DesiredAccess: u32,
pub PreviouslyGrantedAccess: u32,
pub PrincipalSelfSid: PSID,
pub GenericMapping: *mut GENERIC_MAPPING,
pub ObjectTypeListCount: u32,
pub ObjectTypeList: *mut OBJECT_TYPE_LIST,
}Fields§
§Size: u32§SeSecurityDescriptor: *mut SE_SECURITY_DESCRIPTOR§DesiredAccess: u32§PreviouslyGrantedAccess: u32§PrincipalSelfSid: PSID§GenericMapping: *mut GENERIC_MAPPING§ObjectTypeListCount: u32§ObjectTypeList: *mut OBJECT_TYPE_LISTTrait Implementations§
Source§impl Abi for SE_ACCESS_REQUEST
impl Abi for SE_ACCESS_REQUEST
Source§type Abi = SE_ACCESS_REQUEST
type Abi = SE_ACCESS_REQUEST
The abi representation of the implementing type. Read more
type DefaultType = SE_ACCESS_REQUEST
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 SE_ACCESS_REQUEST
impl Clone for SE_ACCESS_REQUEST
Source§fn clone(&self) -> SE_ACCESS_REQUEST
fn clone(&self) -> SE_ACCESS_REQUEST
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SE_ACCESS_REQUEST
Source§impl Debug for SE_ACCESS_REQUEST
impl Debug for SE_ACCESS_REQUEST
Source§impl Default for SE_ACCESS_REQUEST
impl Default for SE_ACCESS_REQUEST
impl Eq for SE_ACCESS_REQUEST
Auto Trait Implementations§
impl !Send for SE_ACCESS_REQUEST
impl !Sync for SE_ACCESS_REQUEST
impl Freeze for SE_ACCESS_REQUEST
impl RefUnwindSafe for SE_ACCESS_REQUEST
impl Unpin for SE_ACCESS_REQUEST
impl UnsafeUnpin for SE_ACCESS_REQUEST
impl UnwindSafe for SE_ACCESS_REQUEST
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