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