usestd::collections::HashSet;/// A Kubernetes secret.
////// If a set of these values is passed to a `Template`, all of the secret's data values will be
/// Base64 encoded after interpolation of parameters.
#[derive(Debug, Eq, Hash, PartialEq)]pubstructSecret{/// The name of the secret.
pubname: String,
/// The namespace of the secret.
pubnamespace: String,
}/// A set of Kubernetes secrets.
pubtypeSecrets=HashSet<Secret>;