[][src]Struct caith::RollResult

pub struct RollResult { /* fields omitted */ }

Carry the result of the roll and an history of the steps taken

Implementations

impl RollResult[src]

pub fn add_reason(&mut self, reason: String)[src]

Add a comment to the result

pub fn get_reason(&self) -> Option<&String>[src]

Get the comment, if any

pub fn get_history(&self) -> &Vec<RollHistory>[src]

Get the history of the result

pub fn get_total(&self) -> i64[src]

Get the result value

Trait Implementations

impl Add<RollResult> for RollResult[src]

type Output = Self

The resulting type after applying the + operator.

impl Debug for RollResult[src]

impl Display for RollResult[src]

impl Div<RollResult> for RollResult[src]

type Output = Self

The resulting type after applying the / operator.

impl Mul<RollResult> for RollResult[src]

type Output = Self

The resulting type after applying the * operator.

impl Sub<RollResult> for RollResult[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,