1 2 3 4 5 6 7 8
pub struct ResponseData { /// The number of records returned in the response. pub count: i32, /// A JSON-encoded array containing the records. pub data: String, /// The encoding format of the data. pub encoding: String, }