Struct veloren_common_net::synced_components::inner::body::golem::AllSpecies
pub struct AllSpecies<SpeciesMeta> {
pub stonegolem: SpeciesMeta,
pub treant: SpeciesMeta,
pub claygolem: SpeciesMeta,
pub woodgolem: SpeciesMeta,
pub coralgolem: SpeciesMeta,
pub gravewarden: SpeciesMeta,
pub ancienteffigy: SpeciesMeta,
pub mogwai: SpeciesMeta,
pub irongolem: SpeciesMeta,
}
Expand description
Data representing per-species generic data.
NOTE: Deliberately don’t (yet?) implement serialize.
Fields§
§stonegolem: SpeciesMeta
§treant: SpeciesMeta
§claygolem: SpeciesMeta
§woodgolem: SpeciesMeta
§coralgolem: SpeciesMeta
§gravewarden: SpeciesMeta
§ancienteffigy: SpeciesMeta
§mogwai: SpeciesMeta
§irongolem: SpeciesMeta
Trait Implementations§
§impl<SpeciesMeta> Clone for AllSpecies<SpeciesMeta>where
SpeciesMeta: Clone,
impl<SpeciesMeta> Clone for AllSpecies<SpeciesMeta>where
SpeciesMeta: Clone,
§fn clone(&self) -> AllSpecies<SpeciesMeta>
fn clone(&self) -> AllSpecies<SpeciesMeta>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<SpeciesMeta> Debug for AllSpecies<SpeciesMeta>where
SpeciesMeta: Debug,
impl<SpeciesMeta> Debug for AllSpecies<SpeciesMeta>where
SpeciesMeta: Debug,
§impl<'de, SpeciesMeta> Deserialize<'de> for AllSpecies<SpeciesMeta>where
SpeciesMeta: Deserialize<'de>,
impl<'de, SpeciesMeta> Deserialize<'de> for AllSpecies<SpeciesMeta>where
SpeciesMeta: Deserialize<'de>,
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AllSpecies<SpeciesMeta>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AllSpecies<SpeciesMeta>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl<'a, SpeciesMeta> Index<&'a Species> for AllSpecies<SpeciesMeta>
impl<'a, SpeciesMeta> Index<&'a Species> for AllSpecies<SpeciesMeta>
§impl<'a, SpeciesMeta> IntoIterator for &'a AllSpecies<SpeciesMeta>where
SpeciesMeta: 'a,
impl<'a, SpeciesMeta> IntoIterator for &'a AllSpecies<SpeciesMeta>where
SpeciesMeta: 'a,
§type IntoIter = Copied<Iter<'static, <&'a AllSpecies<SpeciesMeta> as IntoIterator>::Item>>
type IntoIter = Copied<Iter<'static, <&'a AllSpecies<SpeciesMeta> as IntoIterator>::Item>>
Which kind of iterator are we turning this into?
§fn into_iter(self) -> <&'a AllSpecies<SpeciesMeta> as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a AllSpecies<SpeciesMeta> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
Auto Trait Implementations§
impl<SpeciesMeta> Freeze for AllSpecies<SpeciesMeta>where
SpeciesMeta: Freeze,
impl<SpeciesMeta> RefUnwindSafe for AllSpecies<SpeciesMeta>where
SpeciesMeta: RefUnwindSafe,
impl<SpeciesMeta> Send for AllSpecies<SpeciesMeta>where
SpeciesMeta: Send,
impl<SpeciesMeta> Sync for AllSpecies<SpeciesMeta>where
SpeciesMeta: Sync,
impl<SpeciesMeta> Unpin for AllSpecies<SpeciesMeta>where
SpeciesMeta: Unpin,
impl<SpeciesMeta> UnwindSafe for AllSpecies<SpeciesMeta>where
SpeciesMeta: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more