falco_event/fields/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pub use from_bytes::FromBytes;
pub use from_bytes::FromBytesError;
pub use from_bytes::FromBytesResult;
pub use to_bytes::NoDefault;
pub use to_bytes::ToBytes;
pub use type_id::TypeId;

/// # Autogenerated dynamic field types
///
/// Dynamic fields can have different types based on the context (e.g. the system call parameters).
/// All the implementations in this module are generated from the C structs and mapped to a Rust
/// enum.
#[allow(missing_docs)]
pub mod dynamic_params;
#[allow(missing_docs)]
pub mod event_flags;
mod from_bytes;
mod to_bytes;
mod type_id;
/// # Event field types
///
/// These are the types that can be used in event fields. They are built-in Rust types wherever
/// possible, newtype wrappers in some cases, or new dedicated types.
pub mod types;