[][src]Struct reefast::dh::MutaItemConv

pub struct MutaItemConv {
    pub muta_id: ReeInt,
    pub in_item_id: ReeInt,
    pub out_item_id: ReeInt,
}

Mutaplasmid item type conversion data.

Fields

muta_id: ReeInt

Mutaplasmid item type ID.

in_item_id: ReeInt

Refers an item type the mutaplasmid can be applied to.

out_item_id: ReeInt

Refers an item type, which is the outcome of the conversion.

Implementations

impl MutaItemConv[src]

pub fn new(
    muta_id: ReeInt,
    in_item_id: ReeInt,
    out_item_id: ReeInt
) -> MutaItemConv
[src]

Make a new mutaplasmid item type conversion.

Trait Implementations

impl Debug for MutaItemConv[src]

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, 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.