pub enum RuntimeResponseBodyV3 {
Handshake {
capabilities: Vec<String>,
feature_schema_hash: String,
handler_api_version: u32,
},
Health {
healthy: bool,
},
Result {
output: Value,
},
Inspection {
summary: Value,
},
Snapshot {
state_schema_version: u32,
state_checksum: String,
state: String,
},
Reset {
reset: bool,
},
Error {
error: RuntimeErrorV3,
},
}Expand description
V3 response payloads.
Variants§
Trait Implementations§
Source§impl Clone for RuntimeResponseBodyV3
impl Clone for RuntimeResponseBodyV3
Source§fn clone(&self) -> RuntimeResponseBodyV3
fn clone(&self) -> RuntimeResponseBodyV3
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 RuntimeResponseBodyV3
impl Debug for RuntimeResponseBodyV3
Source§impl<'de> Deserialize<'de> for RuntimeResponseBodyV3
impl<'de> Deserialize<'de> for RuntimeResponseBodyV3
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 RuntimeResponseBodyV3
impl PartialEq for RuntimeResponseBodyV3
Source§impl Serialize for RuntimeResponseBodyV3
impl Serialize for RuntimeResponseBodyV3
impl StructuralPartialEq for RuntimeResponseBodyV3
Auto Trait Implementations§
impl Freeze for RuntimeResponseBodyV3
impl RefUnwindSafe for RuntimeResponseBodyV3
impl Send for RuntimeResponseBodyV3
impl Sync for RuntimeResponseBodyV3
impl Unpin for RuntimeResponseBodyV3
impl UnsafeUnpin for RuntimeResponseBodyV3
impl UnwindSafe for RuntimeResponseBodyV3
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