Struct windows_permissions::SecurityDescriptor[][src]

#[repr(C)]
pub struct SecurityDescriptor { /* fields omitted */ }
Expand description

A Windows security descriptor.

This can only be accessed through a pointer, never constructed directly.

See MSDN for details.

Implementations

Get the Security Descriptor Definition Language (SDDL) string corresponding to this SecurityDescriptor

This function attempts to get the entire SDDL string using SecurityInformation::all(). To get a portion of the SDDL, use wrappers::ConvertSecurityDescriptorToStringSecurityDescriptor directly.

Get the owner SID if it exists

use windows_permissions::{LocalBox, SecurityDescriptor, Sid};

let sd1: LocalBox<SecurityDescriptor> = "O:S-1-5-10-20".parse().unwrap();
let sd2: LocalBox<SecurityDescriptor> = "G:S-1-5-10-20".parse().unwrap();

assert_eq!(sd1.owner().unwrap(),
    &*Sid::new([0, 0, 0, 0, 0, 5], &[10, 20]).unwrap());
assert_eq!(sd2.owner(), None);

Get the group SID if it exists

use windows_permissions::{LocalBox, SecurityDescriptor, Sid};

let sd1: LocalBox<SecurityDescriptor> = "G:S-1-5-10-20".parse().unwrap();
let sd2: LocalBox<SecurityDescriptor> = "O:S-1-5-10-20".parse().unwrap();

assert_eq!(sd1.group().unwrap(),
    &*Sid::new([0, 0, 0, 0, 0, 5], &[10, 20]).unwrap());
assert_eq!(sd2.group(), None);

Get the DACL if it exists

Get the SACL if it exists

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.