pub struct RecalledEntryView {
pub entry_id: String,
pub kind: String,
pub summary: String,
pub from_ceremony_id: String,
pub observed_at_millis: i64,
}Expand description
One thing an earlier session left behind, as a consumer sees it.
Plain data, like everything else here: the summary is what was decided or seen, and the session and the moment are what let a consumer attribute it rather than take it on trust.
Fields§
§entry_id: String§kind: Stringdecision, observation, constraint or outcome.
summary: String§from_ceremony_id: StringThe session that said it.
observed_at_millis: i64Trait Implementations§
Source§impl Clone for RecalledEntryView
impl Clone for RecalledEntryView
Source§fn clone(&self) -> RecalledEntryView
fn clone(&self) -> RecalledEntryView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecalledEntryView
impl Debug for RecalledEntryView
Source§impl<'de> Deserialize<'de> for RecalledEntryView
impl<'de> Deserialize<'de> for RecalledEntryView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RecalledEntryView
Source§impl PartialEq for RecalledEntryView
impl PartialEq for RecalledEntryView
Source§impl Serialize for RecalledEntryView
impl Serialize for RecalledEntryView
impl StructuralPartialEq for RecalledEntryView
Auto Trait Implementations§
impl Freeze for RecalledEntryView
impl RefUnwindSafe for RecalledEntryView
impl Send for RecalledEntryView
impl Sync for RecalledEntryView
impl Unpin for RecalledEntryView
impl UnsafeUnpin for RecalledEntryView
impl UnwindSafe for RecalledEntryView
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