pub struct TriggerVphysicsMotion<'a> {Show 17 fields
pub model: &'a str,
pub origin: Vector,
pub particletrailendsize: u8,
pub particletraillifetime: u8,
pub particletrailmaterial: &'a str,
pub particletrailstartsize: u8,
pub setadditionalairdensity: bool,
pub setangvelocitylimit: f32,
pub setangvelocityscale: f32,
pub setgravityscale: f32,
pub setlinearforce: f32,
pub setlinearforceangles: Angles,
pub setvelocitylimit: f32,
pub setvelocitylimitdelta: f32,
pub setvelocityscale: f32,
pub spawnflags: u32,
pub startdisabled: bool,
}Fields§
§model: &'a str§origin: Vector§particletrailendsize: u8§particletraillifetime: u8§particletrailmaterial: &'a str§particletrailstartsize: u8§setadditionalairdensity: bool§setangvelocitylimit: f32§setangvelocityscale: f32§setgravityscale: f32§setlinearforce: f32§setlinearforceangles: Angles§setvelocitylimit: f32§setvelocitylimitdelta: f32§setvelocityscale: f32§spawnflags: u32§startdisabled: boolTrait Implementations§
Source§impl<'a> Clone for TriggerVphysicsMotion<'a>
impl<'a> Clone for TriggerVphysicsMotion<'a>
Source§fn clone(&self) -> TriggerVphysicsMotion<'a>
fn clone(&self) -> TriggerVphysicsMotion<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for TriggerVphysicsMotion<'a>
impl<'a> Debug for TriggerVphysicsMotion<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for TriggerVphysicsMotion<'a>
impl<'de: 'a, 'a> Deserialize<'de> for TriggerVphysicsMotion<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for TriggerVphysicsMotion<'a>
impl<'a> RefUnwindSafe for TriggerVphysicsMotion<'a>
impl<'a> Send for TriggerVphysicsMotion<'a>
impl<'a> Sync for TriggerVphysicsMotion<'a>
impl<'a> Unpin for TriggerVphysicsMotion<'a>
impl<'a> UnwindSafe for TriggerVphysicsMotion<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more