pub struct SpiderLegSpecification {
pub ground_position: Vector,
pub leg: &'static str,
pub leg_hit_the_ground_trigger: &'static [TriggerEffectItem],
pub leg_hit_the_ground_when_attacking_trigger: &'static [TriggerEffectItem],
pub mount_position: Vector,
pub walking_group: u8,
}Fields§
§ground_position: Vector§leg: &'static str§leg_hit_the_ground_trigger: &'static [TriggerEffectItem]§leg_hit_the_ground_when_attacking_trigger: &'static [TriggerEffectItem]§mount_position: Vector§walking_group: u8Trait Implementations§
Source§impl Clone for SpiderLegSpecification
impl Clone for SpiderLegSpecification
Source§fn clone(&self) -> SpiderLegSpecification
fn clone(&self) -> SpiderLegSpecification
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 moreimpl Copy for SpiderLegSpecification
Source§impl Debug for SpiderLegSpecification
impl Debug for SpiderLegSpecification
Source§impl Default for SpiderLegSpecification
impl Default for SpiderLegSpecification
Source§fn default() -> SpiderLegSpecification
fn default() -> SpiderLegSpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for SpiderLegSpecification
impl PartialEq for SpiderLegSpecification
impl StructuralPartialEq for SpiderLegSpecification
Auto Trait Implementations§
impl Freeze for SpiderLegSpecification
impl RefUnwindSafe for SpiderLegSpecification
impl Send for SpiderLegSpecification
impl Sync for SpiderLegSpecification
impl Unpin for SpiderLegSpecification
impl UnsafeUnpin for SpiderLegSpecification
impl UnwindSafe for SpiderLegSpecification
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