pub struct AwaitingInput {
pub opened_at: DateTime<Utc>,
pub event_seq: u64,
pub discussion_items: Vec<Value>,
}Expand description
Durable open-discussion state projected from node.awaiting_input.
Fields§
§opened_at: DateTime<Utc>Timestamp of the first open signal in the current unresolved generation.
event_seq: u64Event sequence that opened this generation, used to deduplicate its delayed parent notification independently from later generations.
discussion_items: Vec<Value>Validated report-shaped discussion objects. Each carries topic,
options, and recommended_default.
Trait Implementations§
Source§impl Clone for AwaitingInput
impl Clone for AwaitingInput
Source§fn clone(&self) -> AwaitingInput
fn clone(&self) -> AwaitingInput
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 AwaitingInput
impl Debug for AwaitingInput
Source§impl<'de> Deserialize<'de> for AwaitingInput
impl<'de> Deserialize<'de> for AwaitingInput
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
Source§impl PartialEq for AwaitingInput
impl PartialEq for AwaitingInput
Source§impl Serialize for AwaitingInput
impl Serialize for AwaitingInput
impl StructuralPartialEq for AwaitingInput
Auto Trait Implementations§
impl Freeze for AwaitingInput
impl RefUnwindSafe for AwaitingInput
impl Send for AwaitingInput
impl Sync for AwaitingInput
impl Unpin for AwaitingInput
impl UnsafeUnpin for AwaitingInput
impl UnwindSafe for AwaitingInput
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