Enum beerxml::data::YeastType []

pub enum YeastType {
    Ale,
    Lager,
    Wheat,
    Wine,
    Champagne,
}

the type of a yeast

Variants

ale (top-fermenting) yeast

lager (bottom-fermenting) yeast

wheat yeast

wine yeast

champage yeast

Trait Implementations

impl ToString for YeastType

Converts the given value to a String. Read more

impl FromStr for YeastType

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Debug for YeastType
[src]

Formats the value using the given formatter.

impl Default for YeastType
[src]

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