pub(crate) trait HsTimePeriodKeySpecifier: Debug {
// Required methods
fn nickname(&self) -> &HsNickname;
fn period(&self) -> &TimePeriod;
}Expand description
Keys that are used by publisher, which relate to our HS and a TP
Derived using the derive-deftly macro of the same name.
Required Methods§
Sourcefn nickname(&self) -> &HsNickname
fn nickname(&self) -> &HsNickname
Inspect the nickname
Sourcefn period(&self) -> &TimePeriod
fn period(&self) -> &TimePeriod
Inspect the period
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".