pub struct GrowthZoneView {
pub id: String,
pub label: Option<String>,
pub rects: Vec<ZoneRectView>,
pub z_order: i32,
pub fertility: f32,
}Expand description
Growth / fertility overlay — faster respawn & farm tuning (plan 37 / 40).
Fields§
§id: String§label: Option<String>§rects: Vec<ZoneRectView>§z_order: i32§fertility: f32Trait Implementations§
Source§impl Clone for GrowthZoneView
impl Clone for GrowthZoneView
Source§fn clone(&self) -> GrowthZoneView
fn clone(&self) -> GrowthZoneView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GrowthZoneView
impl Debug for GrowthZoneView
Source§impl<'de> Deserialize<'de> for GrowthZoneView
impl<'de> Deserialize<'de> for GrowthZoneView
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 PartialEq for GrowthZoneView
impl PartialEq for GrowthZoneView
Source§impl Serialize for GrowthZoneView
impl Serialize for GrowthZoneView
impl StructuralPartialEq for GrowthZoneView
Auto Trait Implementations§
impl Freeze for GrowthZoneView
impl RefUnwindSafe for GrowthZoneView
impl Send for GrowthZoneView
impl Sync for GrowthZoneView
impl Unpin for GrowthZoneView
impl UnsafeUnpin for GrowthZoneView
impl UnwindSafe for GrowthZoneView
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