Struct beerxml::data::Misc []

pub struct Misc {
    pub name: String,
    pub version: i64,
    pub type_: MiscType,
    pub use_: MiscUse,
    pub time: f64,
    pub amount: f64,
    pub amount_is_weight: bool,
    pub use_for: Option<String>,
    pub notes: Option<String>,
    pub display_time: Option<String>,
    pub display_amount: Option<String>,
    pub inventory: Option<String>,
}

misc beer ingredient

Fields

name of the misc item

version of the misc format (normally 1)

misc type

misc type

time in minutes it is used

amount (liter or kg)

if amount is in kg

short description what the ingredient is used for

detailed notes

display string for time

display string for amount

inventory

Trait Implementations

impl Debug for Misc
[src]

Formats the value using the given formatter.

impl Default for Misc
[src]

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