useserde::{Deserialize, Serialize};/// A featured item showcased on an user's profile
#[cfg(feature ="http")]#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize, Serialize)]#[serde(rename_all ="camelCase")]pubstructFeaturedItem{/// The title to display of the item
pubname: String,
/// An URL of the item's image
pubimage: String,
}