pub struct Pending {
pub at: Instant,
pub actor: String,
pub body: Value,
}Expand description
The records a log is made of, defined in beck_host::record because a browser tab holds a log
too and an envelope has to mean the same thing in both (docs/17
§17.2). What is here is the engine: the substrates, and the contract above.
A validated event on its way to the log, before seq exists.
Fields§
§at: Instant§actor: String§body: ValueTrait Implementations§
Auto Trait Implementations§
impl Freeze for Pending
impl RefUnwindSafe for Pending
impl Send for Pending
impl Sync for Pending
impl Unpin for Pending
impl UnwindSafe for Pending
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