Trait from_int::FromInt [] [src]

pub trait FromInt {
    fn from_int(i: i32) -> Self;
}

The trait that you derive to get YourEnum::from_int(i32).

Required Methods

Implementors