Struct beerxml::data::Hop []

pub struct Hop {
    pub name: String,
    pub version: i64,
    pub alpha: f64,
    pub amount: f64,
    pub use_: HopUse,
    pub time: f64,
    pub notes: Option<String>,
    pub type_: Option<HopType>,
    pub form: Option<HopForm>,
    pub beta: Option<f64>,
    pub hsi: Option<f64>,
    pub origin: Option<String>,
    pub substitutes: Option<String>,
    pub humulene: Option<f64>,
    pub caryophyllene: Option<f64>,
    pub cohumulone: Option<f64>,
    pub myrcene: Option<f64>,
}

a hop

Fields

name of the hop

version of the fermentable format (normally 1)

percent alpha of hops

amount of hops, in kg

use of the hop

time in minutes

notes

type of hop

form of the hop

percent beta of hops

Hop Stability Index - percent of hop alpha lost in 6 months of storage

Place of origin for the hops

Substitutes that can be used for this hop

Humelene leven in percent

Caryophyllene leven in percent

Cohumylone leven in percent

Myrcene leven in percent

Trait Implementations

impl Debug for Hop
[src]

Formats the value using the given formatter.

impl Default for Hop
[src]

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