20 lines
282 B
Rust
20 lines
282 B
Rust
use ruma_macros::event_enum;
|
|
|
|
event_enum! {
|
|
enum State {
|
|
"m.not.a.path",
|
|
}
|
|
}
|
|
|
|
event_enum! {
|
|
enum State {
|
|
"not.a.path",
|
|
}
|
|
}
|
|
|
|
fn main() {}
|
|
|
|
#[doc(hidden)]
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub struct PrivOwnedStr(Box<str>);
|