useserde::Deserialize;/// ConfigTuple : A key/value pair that makes up part of a configuration object.
#[derive(Clone, Default, Debug, PartialEq, Deserialize)]pubstructConfigTuple{/// A configuration object attribute.
pubattribute: String,
/// The value for the attribute.
pubvalue: String,
}