host-identity 1.1.1

Stable, collision-resistant host identity resolution across platforms, container runtimes, cloud providers, and Kubernetes
Documentation
1
2
3
4
5
6
7
8
9
10
//! Non-NetBSD/OpenBSD stub. Returns `Ok(None)` so the type can appear portably.

use crate::source::SourceKind;
use crate::sources::stub_macros::unit_stub;

unit_stub!(
    /// `sysctl kern.hostid` source (no-op on non-BSD targets).
    SysctlKernHostId,
    SourceKind::BsdKernHostId
);