[][src]Enum brawllib_rs::fighter::ModType

pub enum ModType {
    NotMod,
    ModFromBase,
    ModFromScratch,
}

Variants

NotMod

Original brawl fighter. All .pac files are unmodified from brawl.

ModFromBase

Original brawl fighter that has been modified. Its .pac files overwrite those of the existing character, but if .pac files are missing existing ones are used.

ModFromScratch

Fighter that has been made from scratch. All .pac files define a new unique character without the use of any existing brawl .pac files. Although it can reference custom coding of a cloned character somehow.

Trait Implementations

impl Debug for ModType[src]

Auto Trait Implementations

impl Send for ModType

impl Sync for ModType

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]