Skip to main content

SecDescUpdate

Struct SecDescUpdate 

Source
pub struct SecDescUpdate { /* private fields */ }
Expand description

A builder for a functional update to a SecDesc.

Component and control-flag methods select the values to replace. Internally, control changes are stored as compact set/clear bitmasks; SecDesc::with rejects changes that do not apply to loaded components.

Implementations§

Source§

impl SecDescUpdate

Source

pub const fn new() -> Self

Creates an update with no changes.

Source

pub fn owner(self, owner: Option<Sid>) -> Self

Replaces the owner, or clears it with None.

Source

pub fn group(self, group: Option<Sid>) -> Self

Replaces the primary group, or clears it with None.

Source

pub fn dacl(self, dacl: Option<AclBuf>) -> Self

Replaces the DACL, or supplies a null DACL with None.

Source

pub fn sacl(self, sacl: Option<AclBuf>) -> Self

Replaces the SACL, or supplies a null SACL with None.

Source

pub fn owner_defaulted(self, value: bool) -> Self

Sets the owner-defaulted control flag.

Source

pub fn group_defaulted(self, value: bool) -> Self

Sets the group-defaulted control flag.

Source

pub fn dacl_present(self, value: bool) -> Self

Sets whether a DACL is present.

Source

pub fn dacl_defaulted(self, value: bool) -> Self

Sets the DACL-defaulted control flag.

Source

pub fn dacl_auto_inherit_required(self, value: bool) -> Self

Sets the DACL auto-inheritance-requested control flag.

Source

pub fn dacl_auto_inherited(self, value: bool) -> Self

Sets the DACL auto-inherited control flag.

Source

pub fn dacl_protected(self, value: bool) -> Self

Sets the DACL-protected control flag.

Source

pub fn sacl_present(self, value: bool) -> Self

Sets whether a SACL is present.

Source

pub fn sacl_defaulted(self, value: bool) -> Self

Sets the SACL-defaulted control flag.

Source

pub fn sacl_auto_inherit_required(self, value: bool) -> Self

Sets the SACL auto-inheritance-requested control flag.

Source

pub fn sacl_auto_inherited(self, value: bool) -> Self

Sets the SACL auto-inherited control flag.

Source

pub fn sacl_protected(self, value: bool) -> Self

Sets the SACL-protected control flag.

Source

pub fn rm_control(self, rm_control: Option<u8>) -> Self

Sets the resource-manager control byte, or clears its validity with None.

Trait Implementations§

Source§

impl Clone for SecDescUpdate

Source§

fn clone(&self) -> SecDescUpdate

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SecDescUpdate

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.