pub struct FILE_SECURITY(/* private fields */);
Available on crate feature
kernel
only.Expand description
Implementations§
Source§impl FILE_SECURITY
impl FILE_SECURITY
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl FILE_SECURITY
impl FILE_SECURITY
Source§impl FILE_SECURITY
impl FILE_SECURITY
pub const ANONYMOUS: Self
pub const IDENTIFICATION: Self
pub const IMPERSONATION: Self
pub const DELEGATION: Self
pub const CONTEXT_TRACKING: Self
pub const EFFECTIVE_ONLY: Self
Trait Implementations§
Source§impl AsRef<u32> for FILE_SECURITY
impl AsRef<u32> for FILE_SECURITY
Source§impl Binary for FILE_SECURITY
impl Binary for FILE_SECURITY
Source§impl BitAnd for FILE_SECURITY
impl BitAnd for FILE_SECURITY
Source§impl BitAndAssign for FILE_SECURITY
impl BitAndAssign for FILE_SECURITY
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOr for FILE_SECURITY
impl BitOr for FILE_SECURITY
Source§impl BitOrAssign for FILE_SECURITY
impl BitOrAssign for FILE_SECURITY
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXor for FILE_SECURITY
impl BitXor for FILE_SECURITY
Source§impl BitXorAssign for FILE_SECURITY
impl BitXorAssign for FILE_SECURITY
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Clone for FILE_SECURITY
impl Clone for FILE_SECURITY
Source§fn clone(&self) -> FILE_SECURITY
fn clone(&self) -> FILE_SECURITY
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 FILE_SECURITY
impl Debug for FILE_SECURITY
Source§impl Default for FILE_SECURITY
impl Default for FILE_SECURITY
Source§fn default() -> FILE_SECURITY
fn default() -> FILE_SECURITY
Returns the “default value” for a type. Read more
Source§impl Display for FILE_SECURITY
impl Display for FILE_SECURITY
Source§impl From<FILE_SECURITY> for u32
impl From<FILE_SECURITY> for u32
Source§fn from(v: FILE_SECURITY) -> Self
fn from(v: FILE_SECURITY) -> Self
Converts to this type from the input type.
Source§impl Hash for FILE_SECURITY
impl Hash for FILE_SECURITY
Source§impl LowerHex for FILE_SECURITY
impl LowerHex for FILE_SECURITY
Source§impl Not for FILE_SECURITY
impl Not for FILE_SECURITY
Source§impl Octal for FILE_SECURITY
impl Octal for FILE_SECURITY
Source§impl Ord for FILE_SECURITY
impl Ord for FILE_SECURITY
Source§impl PartialEq for FILE_SECURITY
impl PartialEq for FILE_SECURITY
Source§impl PartialOrd for FILE_SECURITY
impl PartialOrd for FILE_SECURITY
Source§impl UpperHex for FILE_SECURITY
impl UpperHex for FILE_SECURITY
impl Copy for FILE_SECURITY
impl Eq for FILE_SECURITY
impl StructuralPartialEq for FILE_SECURITY
Auto Trait Implementations§
impl Freeze for FILE_SECURITY
impl RefUnwindSafe for FILE_SECURITY
impl Send for FILE_SECURITY
impl Sync for FILE_SECURITY
impl Unpin for FILE_SECURITY
impl UnwindSafe for FILE_SECURITY
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