Skip to main content

made_core/entities/
agent_status_source.rs

1use serde::{Deserialize, Serialize};
2
3/// Provenance of the observation shown to a reader.
4#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
5#[serde(rename_all = "snake_case")]
6pub enum AgentStatusSource {
7    HostReport,
8    DerivedLease,
9    HostDiscoveryUnsupported,
10}