#[repr(u8)]
pub enum Team {
Black,
White,
}
Expand description
Black/White
Variants
Black
White
Implementations
Trait Implementations
sourceimpl FromWasmAbi for Team
impl FromWasmAbi for Team
sourceimpl IntoWasmAbi for Team
impl IntoWasmAbi for Team
sourceimpl OptionFromWasmAbi for Team
impl OptionFromWasmAbi for Team
sourceimpl OptionIntoWasmAbi for Team
impl OptionIntoWasmAbi for Team
sourceimpl WasmDescribe for Team
impl WasmDescribe for Team
impl Copy for Team
impl Eq for Team
impl StructuralEq for Team
impl StructuralPartialEq for Team
Auto Trait Implementations
impl RefUnwindSafe for Team
impl Send for Team
impl Sync for Team
impl Unpin for Team
impl UnwindSafe for Team
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