[−][src]Enum screeps::game::market::OrderType
Translates the ORDER_SELL
and ORDER_BUY
constants.
Note: This constant's TryFrom<Value>
, Serialize
and Deserialize
implementations only operate on made-up integer constants. If you're ever
using these impls manually, use the __order_type_num_to_str
and
__order_type_str_to_num
JavaScript functions,
FromStr
or OrderType::deserialize_from_str
.
OrderType
's FromStr
, Display
and ToString
representations accurately
represent the strings the game constant uses.
See the constants module's documentation for more details.
Variants
Sell
Buy
Methods
impl OrderType
[src]
pub fn deserialize_from_str<'de, D: Deserializer<'de>>(
d: D
) -> Result<Self, D::Error>
[src]
d: D
) -> Result<Self, D::Error>
Helper function for deserializing from a string rather than from an integer.
Trait Implementations
impl Clone for OrderType
[src]
fn clone(&self) -> OrderType
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<OrderType> for OrderType
[src]
fn eq(&self, other: &OrderType) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Copy for OrderType
[src]
impl Eq for OrderType
[src]
impl Debug for OrderType
[src]
impl Hash for OrderType
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl FromStr for OrderType
[src]
type Err = ParseError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
[src]
impl Serialize for OrderType
[src]
impl<'de> Deserialize<'de> for OrderType
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Sync for OrderType
impl Send for OrderType
impl Unpin for OrderType
impl RefUnwindSafe for OrderType
impl UnwindSafe for OrderType
Blanket Implementations
impl<T, U> IntoExpectedType<U> for T where
U: FromExpectedType<T>,
[src]
U: FromExpectedType<T>,
fn into_expected_type(Self) -> Result<U, ConversionError>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,