pub trait ClientConfigTestExt {
    // Required methods
    fn new(default_level: u64) -> Self;
    fn append_mode_match(self, mode: SystemMode, level: u64) -> Self;
}
Expand description

A trait that adds useful test-only methods to the ClientConfig struct.

This trait and its methods are not marked cfg(test) so that they may be used outside of this crate.

Required Methods§

source

fn new(default_level: u64) -> Self

source

fn append_mode_match(self, mode: SystemMode, level: u64) -> Self

Object Safety§

This trait is not object safe.

Implementors§