pub enum RuntimeResponseBodyV3Preview {
Handshake {
capabilities: Vec<String>,
feature_schema_hash: String,
handler_api_version: u32,
channel: String,
},
Health {
healthy: bool,
status: String,
reason_codes: Vec<String>,
},
Result {
output: Value,
decision_id: Option<String>,
decision_generation: Option<u64>,
},
Inspection {
summary: Value,
},
Snapshot {
state_schema_version: u32,
state_checksum: String,
state: String,
},
Reset {
reset: bool,
},
Error {
error: RuntimeErrorV3Preview,
},
}Variants§
Trait Implementations§
Source§impl Clone for RuntimeResponseBodyV3Preview
impl Clone for RuntimeResponseBodyV3Preview
Source§fn clone(&self) -> RuntimeResponseBodyV3Preview
fn clone(&self) -> RuntimeResponseBodyV3Preview
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 RuntimeResponseBodyV3Preview
impl Debug for RuntimeResponseBodyV3Preview
Source§impl<'de> Deserialize<'de> for RuntimeResponseBodyV3Preview
impl<'de> Deserialize<'de> for RuntimeResponseBodyV3Preview
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
impl StructuralPartialEq for RuntimeResponseBodyV3Preview
Auto Trait Implementations§
impl Freeze for RuntimeResponseBodyV3Preview
impl RefUnwindSafe for RuntimeResponseBodyV3Preview
impl Send for RuntimeResponseBodyV3Preview
impl Sync for RuntimeResponseBodyV3Preview
impl Unpin for RuntimeResponseBodyV3Preview
impl UnsafeUnpin for RuntimeResponseBodyV3Preview
impl UnwindSafe for RuntimeResponseBodyV3Preview
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