falco_event_schema/fields/
mod.rs

1/// # Autogenerated dynamic field types
2///
3/// Dynamic fields can have different types based on the context (e.g. the system call parameters).
4/// All the implementations in this module are generated from the C structs and mapped to a Rust
5/// enum.
6#[allow(missing_docs)]
7#[allow(clippy::crate_in_macro_def)]
8pub mod dynamic_params;
9
10/// # Event flags
11///
12/// This module contains the definitions of event flags used in Falco events. These flags are
13/// either enums (one value of the enum is set) or bitflags (multiple values can be set at the same time).
14#[allow(missing_docs)]
15pub mod event_flags;
16
17/// # Event field types
18///
19/// These are the types that can be used in event fields. They are built-in Rust types wherever
20/// possible, newtype wrappers in some cases, or new dedicated types.
21pub mod types;