pub struct BeeData {
pub entity_data: Compound,
pub ticks_in_hive: VarInt,
pub min_ticks_in_hive: VarInt,
}Expand description
Information about a Bee inside a Beehive.
Fields§
§entity_data: CompoundThe NBT data of the Bee entity itself (Health, Name, etc.).
ticks_in_hive: VarIntHow many ticks the bee has been inside the hive.
min_ticks_in_hive: VarIntThe minimum ticks required before the bee can leave.
Trait Implementations§
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