pub enum MoveCommandParameter {
Int(i32),
}
Variants§
Trait Implementations§
Source§impl Debug for MoveCommandParameter
impl Debug for MoveCommandParameter
Source§impl<'de> Deserialize<'de> for MoveCommandParameter
impl<'de> Deserialize<'de> for MoveCommandParameter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> FromValue<'a> for MoveCommandParameter
impl<'a> FromValue<'a> for MoveCommandParameter
Source§fn from_value(
_ctx: &FromValueContext<'a>,
value: &Value,
) -> Result<Self, FromValueError>
fn from_value( _ctx: &FromValueContext<'a>, value: &Value, ) -> Result<Self, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read moreSource§impl IntoValue for MoveCommandParameter
impl IntoValue for MoveCommandParameter
Source§fn into_value(
self,
arena: &mut ValueArena,
) -> Result<ValueHandle, IntoValueError>
fn into_value( self, arena: &mut ValueArena, ) -> Result<ValueHandle, IntoValueError>
Turn this type into a Ruby Value.
Auto Trait Implementations§
impl Freeze for MoveCommandParameter
impl RefUnwindSafe for MoveCommandParameter
impl Send for MoveCommandParameter
impl Sync for MoveCommandParameter
impl Unpin for MoveCommandParameter
impl UnwindSafe for MoveCommandParameter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more