#[repr(u8)]
pub enum Strength {
Man,
King,
}
Expand description
Man/King
Variants
Man
King
Trait Implementations
sourceimpl FromWasmAbi for Strength
impl FromWasmAbi for Strength
sourceimpl IntoWasmAbi for Strength
impl IntoWasmAbi for Strength
sourceimpl OptionFromWasmAbi for Strength
impl OptionFromWasmAbi for Strength
sourceimpl OptionIntoWasmAbi for Strength
impl OptionIntoWasmAbi for Strength
sourceimpl WasmDescribe for Strength
impl WasmDescribe for Strength
impl Copy for Strength
impl Eq for Strength
impl StructuralEq for Strength
impl StructuralPartialEq for Strength
Auto Trait Implementations
impl RefUnwindSafe for Strength
impl Send for Strength
impl Sync for Strength
impl Unpin for Strength
impl UnwindSafe for Strength
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcefn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
. Read more