pub struct DeterministicResult { /* private fields */ }Expand description
Deterministic result used by the booking-readiness workflow; it keeps booking work grounded in deterministic policy evidence before any agent draft reaches staff.
Implementations§
Source§impl DeterministicResult
impl DeterministicResult
Sourcepub fn evaluate(rule_evaluations: Vec<Evaluation>) -> Self
pub fn evaluate(rule_evaluations: Vec<Evaluation>) -> Self
Builds or derives evaluate data for the booking-readiness workflow’s reviewed decision model.
Sourcepub const fn recommended_status(&self) -> ReadinessBucket
pub const fn recommended_status(&self) -> ReadinessBucket
Returns the recommended status value kept on this booking-readiness workflow object for staff review and agent context.
Sourcepub fn requires(&self, gate: ApprovalGate) -> bool
pub fn requires(&self, gate: ApprovalGate) -> bool
Reports whether the booking-readiness workflow satisfies the requires safety condition.
Sourcepub fn blocked_actions(&self) -> &[BlockedAction]
pub fn blocked_actions(&self) -> &[BlockedAction]
Returns the blocked actions value kept on this booking-readiness workflow object for staff review and agent context.
Sourcepub fn rule_evaluations(&self) -> &[Evaluation]
pub fn rule_evaluations(&self) -> &[Evaluation]
Returns the rule evaluations value kept on this booking-readiness workflow object for staff review and agent context.
Sourcepub fn staff_may_confirm_without_human_gate(&self) -> bool
pub fn staff_may_confirm_without_human_gate(&self) -> bool
Returns the staff may confirm without human gate value kept on this booking-readiness workflow object for staff review and agent context.
Sourcepub const fn staff_decision_boundary(&self) -> StaffDecisionBoundary
pub const fn staff_decision_boundary(&self) -> StaffDecisionBoundary
Returns the staff decision gate value kept on this booking-readiness workflow object for staff review and agent context.
Trait Implementations§
Source§impl Clone for DeterministicResult
impl Clone for DeterministicResult
Source§fn clone(&self) -> DeterministicResult
fn clone(&self) -> DeterministicResult
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more