6 lines
263 B
Rust
6 lines
263 B
Rust
/// Opaque route key identifying a service subscription. Services name their
|
|
/// own keys, so `common` never enumerates them and adding a service never
|
|
/// edits this crate.
|
|
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
|
|
pub struct Service(pub &'static str);
|