pub struct AnsweredOutput {
pub output: Box<PlannedOutput>,
pub digest: Identity<OutputBytes>,
}Expand description
One seat’s half of the output-and-digest answer: the member the plan declared there, and the digest the closure proved over its rendered bytes.
Fields§
§output: Box<PlannedOutput>The planned member, boxed so one row does not set the width of the roster.
digest: Identity<OutputBytes>The digest proved over the rendered bytes.
Trait Implementations§
Source§impl Clone for AnsweredOutput
impl Clone for AnsweredOutput
Source§fn clone(&self) -> AnsweredOutput
fn clone(&self) -> AnsweredOutput
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 AnsweredOutput
impl Debug for AnsweredOutput
impl Eq for AnsweredOutput
Source§impl Hash for AnsweredOutput
impl Hash for AnsweredOutput
Source§impl PartialEq for AnsweredOutput
impl PartialEq for AnsweredOutput
impl StructuralPartialEq for AnsweredOutput
Auto Trait Implementations§
impl Freeze for AnsweredOutput
impl RefUnwindSafe for AnsweredOutput
impl Send for AnsweredOutput
impl Sync for AnsweredOutput
impl Unpin for AnsweredOutput
impl UnsafeUnpin for AnsweredOutput
impl UnwindSafe for AnsweredOutput
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