pub struct EventJson {
pub event_id: String,
pub issue_id: String,
pub actor: String,
pub ts_unix_ms: u64,
pub parent: Option<String>,
pub kind: Value,
}Expand description
Event for JSON export
Fields§
§event_id: String§issue_id: String§actor: String§ts_unix_ms: u64§parent: Option<String>§kind: ValueTrait Implementations§
Auto Trait Implementations§
impl Freeze for EventJson
impl RefUnwindSafe for EventJson
impl Send for EventJson
impl Sync for EventJson
impl Unpin for EventJson
impl UnwindSafe for EventJson
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more