pub struct PhysRagdollconstraint<'a> {Show 16 fields
pub angles: Option<Angles>,
pub attach1: &'a str,
pub forcelimit: bool,
pub origin: Vector,
pub spawnflags: u32,
pub teleportfollowdistance: bool,
pub torquelimit: bool,
pub xfriction: bool,
pub xmax: u8,
pub xmin: i32,
pub yfriction: bool,
pub ymax: u8,
pub ymin: i32,
pub zfriction: bool,
pub zmax: bool,
pub zmin: bool,
}Fields§
§angles: Option<Angles>§attach1: &'a str§forcelimit: bool§origin: Vector§spawnflags: u32§teleportfollowdistance: bool§torquelimit: bool§xfriction: bool§xmax: u8§xmin: i32§yfriction: bool§ymax: u8§ymin: i32§zfriction: bool§zmax: bool§zmin: boolTrait Implementations§
Source§impl<'a> Clone for PhysRagdollconstraint<'a>
impl<'a> Clone for PhysRagdollconstraint<'a>
Source§fn clone(&self) -> PhysRagdollconstraint<'a>
fn clone(&self) -> PhysRagdollconstraint<'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 PhysRagdollconstraint<'a>
impl<'a> Debug for PhysRagdollconstraint<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for PhysRagdollconstraint<'a>
impl<'de: 'a, 'a> Deserialize<'de> for PhysRagdollconstraint<'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 PhysRagdollconstraint<'a>
impl<'a> RefUnwindSafe for PhysRagdollconstraint<'a>
impl<'a> Send for PhysRagdollconstraint<'a>
impl<'a> Sync for PhysRagdollconstraint<'a>
impl<'a> Unpin for PhysRagdollconstraint<'a>
impl<'a> UnwindSafe for PhysRagdollconstraint<'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