pub struct AgentReadyPlan {
pub lease: String,
pub thread: String,
pub message: Option<String>,
pub confidence: Option<f32>,
}Expand description
Ready plan after pure option preflight + reservation facts.
The CLI still enforces active-session I/O; this only assembles the session-scoped ready payload (thread comes from the reservation entry).
Fields§
§lease: String§thread: String§message: Option<String>§confidence: Option<f32>Trait Implementations§
Source§impl Clone for AgentReadyPlan
impl Clone for AgentReadyPlan
Source§fn clone(&self) -> AgentReadyPlan
fn clone(&self) -> AgentReadyPlan
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 AgentReadyPlan
impl Debug for AgentReadyPlan
Source§impl PartialEq for AgentReadyPlan
impl PartialEq for AgentReadyPlan
impl StructuralPartialEq for AgentReadyPlan
Auto Trait Implementations§
impl Freeze for AgentReadyPlan
impl RefUnwindSafe for AgentReadyPlan
impl Send for AgentReadyPlan
impl Sync for AgentReadyPlan
impl Unpin for AgentReadyPlan
impl UnsafeUnpin for AgentReadyPlan
impl UnwindSafe for AgentReadyPlan
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