#[repr(C)]pub struct ConstraintRuntimeRecord {
pub reaction: ConstraintReactionRecord,
pub accumulated: [f32; 16],
pub broken: u32,
pub constraint_id: u32,
pub generation: u32,
pub _pad0: u32,
}Fields§
§reaction: ConstraintReactionRecord§accumulated: [f32; 16]§broken: u32§constraint_id: u32§generation: u32§_pad0: u32Implementations§
Trait Implementations§
Source§impl Clone for ConstraintRuntimeRecord
impl Clone for ConstraintRuntimeRecord
Source§fn clone(&self) -> ConstraintRuntimeRecord
fn clone(&self) -> ConstraintRuntimeRecord
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 ConstraintRuntimeRecord
Source§impl Debug for ConstraintRuntimeRecord
impl Debug for ConstraintRuntimeRecord
Source§impl PartialEq for ConstraintRuntimeRecord
impl PartialEq for ConstraintRuntimeRecord
impl Pod for ConstraintRuntimeRecord
impl StructuralPartialEq for ConstraintRuntimeRecord
Auto Trait Implementations§
impl Freeze for ConstraintRuntimeRecord
impl RefUnwindSafe for ConstraintRuntimeRecord
impl Send for ConstraintRuntimeRecord
impl Sync for ConstraintRuntimeRecord
impl Unpin for ConstraintRuntimeRecord
impl UnsafeUnpin for ConstraintRuntimeRecord
impl UnwindSafe for ConstraintRuntimeRecord
Blanket Implementations§
impl<T> AnyBitPattern for Twhere
T: Pod,
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.