Struct veloren_common::comp::body::bird_medium::AllSpecies
source · pub struct AllSpecies<SpeciesMeta> {Show 18 fields
pub snowy_owl: SpeciesMeta,
pub horned_owl: SpeciesMeta,
pub duck: SpeciesMeta,
pub cockatiel: SpeciesMeta,
pub chicken: SpeciesMeta,
pub bat: SpeciesMeta,
pub penguin: SpeciesMeta,
pub goose: SpeciesMeta,
pub peacock: SpeciesMeta,
pub eagle: SpeciesMeta,
pub parrot: SpeciesMeta,
pub crow: SpeciesMeta,
pub dodo: SpeciesMeta,
pub parakeet: SpeciesMeta,
pub puffin: SpeciesMeta,
pub toucan: SpeciesMeta,
pub bloodmoon_bat: SpeciesMeta,
pub vampire_bat: SpeciesMeta,
}
Expand description
Data representing per-species generic data.
NOTE: Deliberately don’t (yet?) implement serialize.
Fields§
§snowy_owl: SpeciesMeta
§horned_owl: SpeciesMeta
§duck: SpeciesMeta
§cockatiel: SpeciesMeta
§chicken: SpeciesMeta
§bat: SpeciesMeta
§penguin: SpeciesMeta
§goose: SpeciesMeta
§peacock: SpeciesMeta
§eagle: SpeciesMeta
§parrot: SpeciesMeta
§crow: SpeciesMeta
§dodo: SpeciesMeta
§parakeet: SpeciesMeta
§puffin: SpeciesMeta
§toucan: SpeciesMeta
§bloodmoon_bat: SpeciesMeta
§vampire_bat: SpeciesMeta
Trait Implementations§
source§impl<SpeciesMeta: Clone> Clone for AllSpecies<SpeciesMeta>
impl<SpeciesMeta: Clone> Clone for AllSpecies<SpeciesMeta>
source§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 moresource§impl<SpeciesMeta: Debug> Debug for AllSpecies<SpeciesMeta>
impl<SpeciesMeta: Debug> Debug for AllSpecies<SpeciesMeta>
source§impl<'de, SpeciesMeta> Deserialize<'de> for AllSpecies<SpeciesMeta>where
SpeciesMeta: Deserialize<'de>,
impl<'de, SpeciesMeta> Deserialize<'de> for AllSpecies<SpeciesMeta>where
SpeciesMeta: Deserialize<'de>,
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, SpeciesMeta> Index<&'a Species> for AllSpecies<SpeciesMeta>
impl<'a, SpeciesMeta> Index<&'a Species> for AllSpecies<SpeciesMeta>
source§impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies<SpeciesMeta>
impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies<SpeciesMeta>
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