blob: ea18ecb787020986ad073efee261c6deba753129 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! Support for reporting the status of an onion service.
/// The current reported status of an onion service.
#[derive(Debug, Clone)]
pub struct OnionServiceStatus {
// TODO hss Should say how many intro points are active, how many descriptors
// are updated, whether we're "healthy", etc.
/// An ignored field to suppress warnings. TODO HSS remove this.
_ignore: (),
}
|