ruwuma/crates/ruma-events/tests/ui/04-event-sanity-check.rs
2021-08-16 23:10:46 +02:00

18 lines
413 B
Rust

// rustc overflows when compiling this see:
// https://github.com/rust-lang/rust/issues/55779
extern crate serde;
use ruma_events::{StateEventContent, Unsigned};
use ruma_events_macros::Event;
/// State event.
#[derive(Clone, Debug, Event)]
pub struct StateEvent<C: StateEventContent> {
pub content: C,
pub state_key: String,
pub prev_content: Option<C>,
pub unsigned: Unsigned,
}
fn main() {}