timber_rust/logger/status.rs
1
2/// Represents the operational state of a logging [backend service][`crate::Service`].
3#[derive(Debug, Clone, Copy, PartialEq, Eq)]
4pub enum Status {
5 /// The service is active and ready to process messages.
6 Running,
7 /// The service has encountered a failure and cannot process messages.
8 Broken,
9}