[][src]Struct bwapi_wrapper::BWAPI_RegionData

#[repr(C)]pub struct BWAPI_RegionData {
    pub id: c_int,
    pub islandID: c_int,
    pub center_x: c_int,
    pub center_y: c_int,
    pub priority: c_int,
    pub leftMost: c_int,
    pub rightMost: c_int,
    pub topMost: c_int,
    pub bottomMost: c_int,
    pub neighborCount: c_int,
    pub neighbors: [c_int; 256],
    pub isAccessible: bool,
    pub isHigherGround: bool,
}

Fields

id: c_intislandID: c_intcenter_x: c_intcenter_y: c_intpriority: c_intleftMost: c_intrightMost: c_inttopMost: c_intbottomMost: c_intneighborCount: c_intneighbors: [c_int; 256]isAccessible: boolisHigherGround: bool

Trait Implementations

impl Clone for BWAPI_RegionData[src]

impl Copy for BWAPI_RegionData[src]

impl Default for BWAPI_RegionData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.