pub struct PlanetSpeciesEntry {
pub specie: Species,
pub will_spawn: WillSpawn,
pub scanned: bool,
pub logged: bool,
}
Fields§
§specie: Species
The species on the planet.
will_spawn: WillSpawn
Whether the species will actually be able to spawn by also taking into account genus uniqueness per planet.
scanned: bool
Whether the species has been scanned at least once.
logged: bool
Whether the species has been scanned three times and has been logged.
Trait Implementations§
Source§impl Debug for PlanetSpeciesEntry
impl Debug for PlanetSpeciesEntry
Auto Trait Implementations§
impl Freeze for PlanetSpeciesEntry
impl RefUnwindSafe for PlanetSpeciesEntry
impl Send for PlanetSpeciesEntry
impl Sync for PlanetSpeciesEntry
impl Unpin for PlanetSpeciesEntry
impl UnwindSafe for PlanetSpeciesEntry
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