Struct beerxml::data::Yeast []

pub struct Yeast {
    pub name: String,
    pub version: i64,
    pub type_: YeastType,
    pub form: YeastForm,
    pub amount: f64,
    pub amount_is_weight: bool,
    pub laboratory: Option<String>,
    pub product_id: Option<String>,
    pub min_temperature: Option<f64>,
    pub max_temperature: Option<f64>,
    pub flocculation: Option<YeastFlocculation>,
    pub attenuation: Option<f64>,
    pub notes: Option<String>,
    pub best_for: Option<String>,
    pub times_cultured: Option<i64>,
    pub max_reuse: Option<i64>,
    pub add_to_secondary: bool,
    pub display_amount: Option<String>,
    pub display_min_temp: Option<String>,
    pub display_max_temp: Option<String>,
    pub inventory: Option<String>,
    pub culture_date: Option<String>,
}

a yeast

Fields

name of the hop

version of the yeast format (normally 1)

yeast type

yeast form

amount (liter or kg)

if amount is in kg

name of the producer

manufacturer product id

minimum recommended temperature for fermenting this yeast strain in degrees Celsius

maximum recommended temperature for fermenting this yeast strain in Celsius

yeast flocculation

attenuation of the yeast in percent

notes

styles or types of beer this yeast strain is best suited for

number of times this yeast has been reused as a harvested culture. This number should be zero if this is a product directly from the manufacturer

recommended of times this yeast can be reused (recultured from a previous batch)

flag denoting that this yeast was added for a secondary (or later) fermentation as opposed to the primary fermentation. Useful if one uses two or more yeast strains for a single brew (eg: Lambic). Default value is false

amount

recommended minimum temperature

recommended maximum temperature

inventory

date the culture was made

Trait Implementations

impl Debug for Yeast
[src]

Formats the value using the given formatter.

impl Default for Yeast
[src]

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