Struct cute_dnd_dice::Roll

source ·
pub struct Roll {
    pub num: u16,
    pub faces: u16,
    pub extra: Modifier,
}
Expand description

D&D Roll representation

Fields§

§num: u16

Number of dices

§faces: u16

Number of faces on dice

§extra: Modifier

Bonus to roll

Implementations§

Attempts to parse Roll from string [num]d<faces> [+ <extra>]

Returns minimum possible value.

Returns maximum possible value.

Calculates roll using rand::thread_rng()

Calculates result of roll using provided rand::Rng

Trait Implementations§

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.