pub struct Recorded {
pub reconciled: usize,
pub landed: usize,
pub refetch_failed: Option<ForgeError>,
}Expand description
What a publish did to this session, for a renderer to say in its own words.
Fields§
§reconciled: usizeFindings the refetched threads gave an address that the publish’s answer had not.
landed: usizeOf the findings sent, how many now have an address — from the answer or from a marker the refetch carried.
refetch_failed: Option<ForgeError>The refetch that failed, when it did. The comments are on the request regardless; the next fetch reconciles them.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Recorded
impl !UnwindSafe for Recorded
impl Freeze for Recorded
impl Send for Recorded
impl Sync for Recorded
impl Unpin for Recorded
impl UnsafeUnpin for Recorded
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