//! An illustrative image shown next to a member.
useserde::{Deserialize, Serialize};/// An illustrative image shown next to a member.
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]pubstructImage{/// The name of the image file to display.
////// These files are placed into the `/static/images/` directory.
pubfilename: String,
/// The explanatory text to show attached to the image.
pubcaption:Option<String>,
}