Struct beerxml::data::Water []

pub struct Water {
    pub name: String,
    pub version: i64,
    pub amount: f64,
    pub calcium: f64,
    pub bicarbonate: f64,
    pub sulfate: f64,
    pub chloride: f64,
    pub sodium: f64,
    pub magnesium: f64,
    pub ph: Option<f64>,
    pub notes: Option<String>,
}

water information

Fields

name of the misc item

version of the record, should be 1

Volume of water to use in a recipe in liters

the amount of Ca in ppm

the amount of HCO3 in ppm

the amount of SO4 in ppm

the amount of Cl in ppm

the amount of Na in ppm

the amount of Mg in ppm

the pH of the water

notes

Trait Implementations

impl Debug for Water
[src]

Formats the value using the given formatter.

impl Default for Water
[src]

Returns the "default value" for a type. Read more