Struct rust_sc2::game_data::AbilityData [−][src]
pub struct AbilityData {Show fields
pub id: AbilityId,
pub link_name: String,
pub link_index: u32,
pub button_name: Option<String>,
pub friendly_name: Option<String>,
pub hotkey: Option<String>,
pub remaps_to_ability_id: Option<AbilityId>,
pub available: bool,
pub target: AbilityTarget,
pub allow_minimap: bool,
pub allow_autocast: bool,
pub is_building: bool,
pub footprint_radius: Option<f32>,
pub is_instant_placement: bool,
pub cast_range: Option<f32>,
}Information about specific ability.
Fields
id: AbilityIdlink_name: Stringlink_index: u32friendly_name: Option<String>hotkey: Option<String>remaps_to_ability_id: Option<AbilityId>available: boolAbility is available in current game version.
target: AbilityTargetPossible target of ability, needed when giving commands to units.
allow_minimap: boolAbility can be used on minimap.
allow_autocast: boolAbility can be autocasted.
is_building: boolAbility is used to construct a building.
footprint_radius: Option<f32>Half of the building size.
is_instant_placement: boolcast_range: Option<f32>Maximum range to target of the ability.
Trait Implementations
impl Clone for AbilityData[src]
fn clone(&self) -> AbilityData[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
Auto Trait Implementations
impl RefUnwindSafe for AbilityData
impl Send for AbilityData
impl Sync for AbilityData
impl Unpin for AbilityData
impl UnwindSafe for AbilityData
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,