pub struct BackendCommandResponse {
pub result: Option<Value>,
}Expand description
BackendCommandResponse
JSON schema
{
"type": "object",
"properties": {
"result": {
"description": "Backend command result payload"
}
},
"additionalProperties": true
}Fields§
§result: Option<Value>Backend command result payload
Trait Implementations§
Source§impl Clone for BackendCommandResponse
impl Clone for BackendCommandResponse
Source§fn clone(&self) -> BackendCommandResponse
fn clone(&self) -> BackendCommandResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 BackendCommandResponse
impl Debug for BackendCommandResponse
Source§impl Default for BackendCommandResponse
impl Default for BackendCommandResponse
Source§impl<'de> Deserialize<'de> for BackendCommandResponse
impl<'de> Deserialize<'de> for BackendCommandResponse
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 From<&BackendCommandResponse> for BackendCommandResponse
impl From<&BackendCommandResponse> for BackendCommandResponse
Source§fn from(value: &BackendCommandResponse) -> Self
fn from(value: &BackendCommandResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BackendCommandResponse
impl RefUnwindSafe for BackendCommandResponse
impl Send for BackendCommandResponse
impl Sync for BackendCommandResponse
impl Unpin for BackendCommandResponse
impl UnwindSafe for BackendCommandResponse
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