pub struct JsonRpcRequestForExperimentalViewCode {
pub id: String,
pub jsonrpc: String,
pub method: JsonRpcRequestForExperimentalViewCodeMethod,
pub params: RpcViewCodeRequest,
}Expand description
JsonRpcRequestForExperimentalViewCode
JSON schema
{
"title": "JsonRpcRequest_for_EXPERIMENTAL_view_code",
"type": "object",
"required": [
"id",
"jsonrpc",
"method",
"params"
],
"properties": {
"id": {
"type": "string"
},
"jsonrpc": {
"type": "string"
},
"method": {
"type": "string",
"enum": [
"EXPERIMENTAL_view_code"
]
},
"params": {
"$ref": "#/components/schemas/RpcViewCodeRequest"
}
}
}Fields§
§id: String§jsonrpc: String§method: JsonRpcRequestForExperimentalViewCodeMethod§params: RpcViewCodeRequestTrait Implementations§
Source§impl Clone for JsonRpcRequestForExperimentalViewCode
impl Clone for JsonRpcRequestForExperimentalViewCode
Source§fn clone(&self) -> JsonRpcRequestForExperimentalViewCode
fn clone(&self) -> JsonRpcRequestForExperimentalViewCode
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<'de> Deserialize<'de> for JsonRpcRequestForExperimentalViewCode
impl<'de> Deserialize<'de> for JsonRpcRequestForExperimentalViewCode
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<&JsonRpcRequestForExperimentalViewCode> for JsonRpcRequestForExperimentalViewCode
impl From<&JsonRpcRequestForExperimentalViewCode> for JsonRpcRequestForExperimentalViewCode
Source§fn from(value: &JsonRpcRequestForExperimentalViewCode) -> Self
fn from(value: &JsonRpcRequestForExperimentalViewCode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JsonRpcRequestForExperimentalViewCode
impl RefUnwindSafe for JsonRpcRequestForExperimentalViewCode
impl Send for JsonRpcRequestForExperimentalViewCode
impl Sync for JsonRpcRequestForExperimentalViewCode
impl Unpin for JsonRpcRequestForExperimentalViewCode
impl UnsafeUnpin for JsonRpcRequestForExperimentalViewCode
impl UnwindSafe for JsonRpcRequestForExperimentalViewCode
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