useserde::{Deserialize, Serialize};useserde_json::Value;/// Contains the structure for a method request
/// Contains the name of the method that should be called
/// And a list of arguments which is a `serde_json::Value`
#[derive(Serialize, Deserialize)]pubstructRequestData{/// The name of the method that is called
pubmethod_name: String,
/// The list of arguments which are supplied to the method
pubarguments: Value,
}