pub struct BoundaryZoneView {
pub id: String,
pub label: Option<String>,
pub rects: Vec<ZoneRectView>,
pub z_order: i32,
pub jurisdiction_id: Option<String>,
pub worker_logistics: bool,
pub security_tier: String,
pub pvp_mode: String,
pub crime_enabled: bool,
pub guard_response: bool,
}Expand description
Town / security / PvP boundary overlay (plan 43).
Fields§
§id: String§label: Option<String>§rects: Vec<ZoneRectView>§z_order: i32§jurisdiction_id: Option<String>§worker_logistics: bool§security_tier: String§pvp_mode: String§crime_enabled: bool§guard_response: boolTrait Implementations§
Source§impl Clone for BoundaryZoneView
impl Clone for BoundaryZoneView
Source§fn clone(&self) -> BoundaryZoneView
fn clone(&self) -> BoundaryZoneView
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 BoundaryZoneView
impl Debug for BoundaryZoneView
Source§impl<'de> Deserialize<'de> for BoundaryZoneView
impl<'de> Deserialize<'de> for BoundaryZoneView
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 BoundaryZoneView
impl PartialEq for BoundaryZoneView
Source§impl Serialize for BoundaryZoneView
impl Serialize for BoundaryZoneView
impl StructuralPartialEq for BoundaryZoneView
Auto Trait Implementations§
impl Freeze for BoundaryZoneView
impl RefUnwindSafe for BoundaryZoneView
impl Send for BoundaryZoneView
impl Sync for BoundaryZoneView
impl Unpin for BoundaryZoneView
impl UnsafeUnpin for BoundaryZoneView
impl UnwindSafe for BoundaryZoneView
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