[−][src]Enum screeps::constants::Part  
Creep part types.
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 __part_num_to_str and
__part_str_to_num JavaScript functions, FromStr or
Part::deserialize_from_str.
See the module-level documentation for more details.
Variants
MoveWorkCarryAttackRangedAttackToughHealClaimMethods
impl Part[src]
pub fn cost(self) -> u32[src]
Translates the BODYPART_COST constant.
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 a fake integer value.
Trait Implementations
impl Copy for Part[src]
impl Clone for Part[src]
fn clone(&self) -> Part[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<Part> for Part[src]
fn eq(&self, other: &Part) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Eq for Part[src]
impl Debug for Part[src]
impl Hash for Part[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 Part[src]
type Err = ParseError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl TryFrom<Value> for Part
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>
impl Serialize for Part[src]
impl<'de> Deserialize<'de> for Part[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
    D: Deserializer<'de>, [src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Sync for Part
impl Unpin for Part
impl Send for Part
impl UnwindSafe for Part
impl RefUnwindSafe for Part
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, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
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> 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> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
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>,