pub struct BiomeZoneView {
pub id: String,
pub label: Option<String>,
pub rects: Vec<ZoneRectView>,
pub z_order: i32,
pub biome_id: String,
}Expand description
Climate / biome overlay (plan 38).
Fields§
§id: String§label: Option<String>§rects: Vec<ZoneRectView>§z_order: i32§biome_id: StringTrait Implementations§
Source§impl Clone for BiomeZoneView
impl Clone for BiomeZoneView
Source§fn clone(&self) -> BiomeZoneView
fn clone(&self) -> BiomeZoneView
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 BiomeZoneView
impl Debug for BiomeZoneView
Source§impl<'de> Deserialize<'de> for BiomeZoneView
impl<'de> Deserialize<'de> for BiomeZoneView
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 BiomeZoneView
impl PartialEq for BiomeZoneView
Source§impl Serialize for BiomeZoneView
impl Serialize for BiomeZoneView
impl StructuralPartialEq for BiomeZoneView
Auto Trait Implementations§
impl Freeze for BiomeZoneView
impl RefUnwindSafe for BiomeZoneView
impl Send for BiomeZoneView
impl Sync for BiomeZoneView
impl Unpin for BiomeZoneView
impl UnsafeUnpin for BiomeZoneView
impl UnwindSafe for BiomeZoneView
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