talos_common_utils 0.3.15

Common utilities used in Talos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod backpressure;
pub mod env;
pub mod otel;
pub mod sync;

pub trait ResetVariantTrait {
    const RESET_VARIANT: Self;
    fn get_reset_variant() -> Self
    where
        Self: Sized,
    {
        Self::RESET_VARIANT
    }
}