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