#[repr(C)]pub struct audit_rule_data {
pub flags: u32,
pub action: u32,
pub field_count: u32,
pub mask: [u32; 64],
pub fields: [u32; 64],
pub values: [u32; 64],
pub fieldflags: [u32; 64],
pub buflen: u32,
pub buf: __IncompleteArrayField<i8>,
}Fields§
§flags: u32§action: u32§field_count: u32§mask: [u32; 64]§fields: [u32; 64]§values: [u32; 64]§fieldflags: [u32; 64]§buflen: u32§buf: __IncompleteArrayField<i8>Trait Implementations§
Source§impl Debug for audit_rule_data
impl Debug for audit_rule_data
Source§impl Default for audit_rule_data
impl Default for audit_rule_data
Source§fn default() -> audit_rule_data
fn default() -> audit_rule_data
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for audit_rule_data
impl RefUnwindSafe for audit_rule_data
impl Send for audit_rule_data
impl Sync for audit_rule_data
impl Unpin for audit_rule_data
impl UnwindSafe for audit_rule_data
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more