pub struct BeeData {
pub bee: Bee,
pub min_occupation_ticks: i32,
pub ticks_in_hive: i32,
}Expand description
A struct holding bee data
Fields§
§bee: BeeThe data of the Bee
min_occupation_ticks: i32The minimum amount of ticks, that the bee stays in the hive
ticks_in_hive: i32The amount of ticks, that the bee is in the hive
Trait Implementations§
source§impl PartialEq for BeeData
impl PartialEq for BeeData
impl StructuralPartialEq for BeeData
Auto Trait Implementations§
impl Freeze for BeeData
impl RefUnwindSafe for BeeData
impl Send for BeeData
impl Sync for BeeData
impl Unpin for BeeData
impl UnwindSafe for BeeData
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