pub struct Saying {
pub commit: String,
pub verdict: Option<Verdict>,
pub who: String,
pub when: u64,
pub said: Digest,
pub nth: u32,
}Expand description
One thing somebody said, as it comes back from a scan.
Fields§
§commit: String§verdict: Option<Verdict>None for a note that judged nothing.
who: String§when: u64Seconds since the epoch, stamped by the store.
said: DigestWhere the prose is. Not the prose: that is a fetch, and a scan is not.
nth: u32Which slot under its commit, so the last word can be found.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Saying
impl RefUnwindSafe for Saying
impl Send for Saying
impl Sync for Saying
impl Unpin for Saying
impl UnsafeUnpin for Saying
impl UnwindSafe for Saying
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