pub enum RuntimeRequestV3 {
Handshake {},
Health {},
Observe {
event: Value,
},
Decide {
context: Value,
deterministic_seed: Option<u64>,
},
Feedback {
decision_id: String,
selected_arm: u32,
reward: f64,
outcome_time_ms: u64,
generation: u64,
},
Inspect {},
Snapshot {},
Reset {
expected_state_generation: u64,
},
}Expand description
Independent V3 method set. Payloads remain business-neutral JSON.
Variants§
Trait Implementations§
Source§impl Clone for RuntimeRequestV3
impl Clone for RuntimeRequestV3
Source§fn clone(&self) -> RuntimeRequestV3
fn clone(&self) -> RuntimeRequestV3
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 RuntimeRequestV3
impl Debug for RuntimeRequestV3
Source§impl<'de> Deserialize<'de> for RuntimeRequestV3
impl<'de> Deserialize<'de> for RuntimeRequestV3
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 RuntimeRequestV3
impl PartialEq for RuntimeRequestV3
Source§impl Serialize for RuntimeRequestV3
impl Serialize for RuntimeRequestV3
impl StructuralPartialEq for RuntimeRequestV3
Auto Trait Implementations§
impl Freeze for RuntimeRequestV3
impl RefUnwindSafe for RuntimeRequestV3
impl Send for RuntimeRequestV3
impl Sync for RuntimeRequestV3
impl Unpin for RuntimeRequestV3
impl UnsafeUnpin for RuntimeRequestV3
impl UnwindSafe for RuntimeRequestV3
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