/// All meta associated type components
useserde::{Deserialize, Serialize};/// The Metadata struct used to contain all of the results returned from the get_meta endpoint.
////// There should never be a need for this to be created manually.
#[derive(Serialize, Deserialize, Debug)]pubstructMetadata{pubhostname: String,
pubmodules:serde_json::Value,
pubversion: String,
}