pub struct SeLinuxStatus {
    pub is_enforcing: bool,
    pub change_count: u32,
    pub deny_unknown: bool,
}Expand description
Status information parameter for the SeLinuxStatusPublisher interface.
Fields§
§is_enforcing: boolSELinux-wide enforcing vs. permissive mode bit.
change_count: u32Number of times the policy has been changed since SELinux started.
deny_unknown: boolBit indicating whether operations unknown SELinux abstractions will be denied.
Auto Trait Implementations§
impl Freeze for SeLinuxStatus
impl RefUnwindSafe for SeLinuxStatus
impl Send for SeLinuxStatus
impl Sync for SeLinuxStatus
impl Unpin for SeLinuxStatus
impl UnwindSafe for SeLinuxStatus
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