pub struct RecollectionView {
pub scope: String,
pub entries: Vec<RecalledEntryView>,
pub truncated: bool,
}Expand description
What earlier sessions in a ceremony’s memory scope decided, as that ceremony was told when it opened.
Absent from a summary when the ceremony was told nothing, which is
every ceremony that declares no memory_scope in its context: the
default scope is the ceremony’s own id and nobody else writes there.
Fields§
§scope: StringThe memory this ceremony reads and writes, as kind:name.
entries: Vec<RecalledEntryView>§truncated: boolWhether the budget stopped the rendering before the scope ran out. A consumer weighing what earlier sessions decided has to know whether it is looking at the whole record or the front of it.
Trait Implementations§
Source§impl Clone for RecollectionView
impl Clone for RecollectionView
Source§impl Debug for RecollectionView
impl Debug for RecollectionView
Source§impl<'de> Deserialize<'de> for RecollectionView
impl<'de> Deserialize<'de> for RecollectionView
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 RecollectionView
Source§impl PartialEq for RecollectionView
impl PartialEq for RecollectionView
Source§impl Serialize for RecollectionView
impl Serialize for RecollectionView
impl StructuralPartialEq for RecollectionView
Auto Trait Implementations§
impl Freeze for RecollectionView
impl RefUnwindSafe for RecollectionView
impl Send for RecollectionView
impl Sync for RecollectionView
impl Unpin for RecollectionView
impl UnsafeUnpin for RecollectionView
impl UnwindSafe for RecollectionView
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