pub struct NativeRuntimeResponse {
pub protocol: String,
pub kind: NativeRuntimeKind,
pub ok: bool,
pub output: Option<JsonValue>,
pub error: Option<String>,
}Fields§
§protocol: String§kind: NativeRuntimeKind§ok: bool§output: Option<JsonValue>§error: Option<String>Trait Implementations§
Source§impl Clone for NativeRuntimeResponse
impl Clone for NativeRuntimeResponse
Source§fn clone(&self) -> NativeRuntimeResponse
fn clone(&self) -> NativeRuntimeResponse
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 NativeRuntimeResponse
impl Debug for NativeRuntimeResponse
Source§impl<'de> Deserialize<'de> for NativeRuntimeResponse
impl<'de> Deserialize<'de> for NativeRuntimeResponse
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 NativeRuntimeResponse
impl PartialEq for NativeRuntimeResponse
Source§fn eq(&self, other: &NativeRuntimeResponse) -> bool
fn eq(&self, other: &NativeRuntimeResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NativeRuntimeResponse
impl Serialize for NativeRuntimeResponse
impl StructuralPartialEq for NativeRuntimeResponse
Auto Trait Implementations§
impl Freeze for NativeRuntimeResponse
impl RefUnwindSafe for NativeRuntimeResponse
impl Send for NativeRuntimeResponse
impl Sync for NativeRuntimeResponse
impl Unpin for NativeRuntimeResponse
impl UnsafeUnpin for NativeRuntimeResponse
impl UnwindSafe for NativeRuntimeResponse
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