falco_event/fields/
mod.rs

1pub use from_bytes::FromBytes;
2pub use from_bytes::FromBytesError;
3pub use to_bytes::NoDefault;
4pub use to_bytes::ToBytes;
5
6/// # Autogenerated dynamic field types
7///
8/// Dynamic fields can have different types based on the context (e.g. the system call parameters).
9/// All the implementations in this module are generated from the C structs and mapped to a Rust
10/// enum.
11#[allow(missing_docs)]
12#[allow(clippy::crate_in_macro_def)]
13pub mod dynamic_params;
14#[allow(missing_docs)]
15pub mod event_flags;
16mod from_bytes;
17mod to_bytes;
18/// # Event field types
19///
20/// These are the types that can be used in event fields. They are built-in Rust types wherever
21/// possible, newtype wrappers in some cases, or new dedicated types.
22pub mod types;