usecrate::{error::SeccompError,wrapper::SeccompWrapper};/// seccomp filters
pubmodseccomp;/// tracer filter(ptrace)
pubmodtracer;/// Interceptor that allows you to modify registers in entry and exit
pubmodintercept;/// define a Restrict filter trait
pub(crate)traitRestrictFilter{/// this method defines the behavior of applying a filter on the context(eg, seccomp context)
fnapply(&self, ctx:&mut SeccompWrapper)->Result<(), SeccompError>;}