pub struct StatementPayload {
pub author: String,
pub channel: String,
pub data: String,
pub timestamp_ms: u64,
}Expand description
Payload for the statement push event.
Hosts MUST include timestamp_ms — it is the millisecond Unix epoch
timestamp from the statement store, not the local receive time.
Fields§
§channel: String§data: String§timestamp_ms: u64Trait Implementations§
Source§impl Debug for StatementPayload
impl Debug for StatementPayload
Auto Trait Implementations§
impl Freeze for StatementPayload
impl RefUnwindSafe for StatementPayload
impl Send for StatementPayload
impl Sync for StatementPayload
impl Unpin for StatementPayload
impl UnsafeUnpin for StatementPayload
impl UnwindSafe for StatementPayload
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