Struct bpf_loader_lib::meta::RunnerConfig
source · pub struct RunnerConfig {
pub print_kernel_debug: bool,
}
Expand description
Global config to control the behavior of eunomia-bpf TODO: load config from json or config files
Fields§
§print_kernel_debug: bool
whether we should print the bpf_printk from /sys/kernel/debug/tracing/trace_pipe
Trait Implementations§
source§impl Clone for RunnerConfig
impl Clone for RunnerConfig
source§fn clone(&self) -> RunnerConfig
fn clone(&self) -> RunnerConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RunnerConfig
impl Debug for RunnerConfig
source§impl Default for RunnerConfig
impl Default for RunnerConfig
source§fn default() -> RunnerConfig
fn default() -> RunnerConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RunnerConfig
impl<'de> Deserialize<'de> for RunnerConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl UnwindSafe for RunnerConfig
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