#[repr(i32)]pub enum PxPvdUpdateType {
CreateInstance = 0,
ReleaseInstance = 1,
UpdateAllProperties = 2,
UpdateSimProperties = 3,
}Expand description
Flags for determining how PVD should serialize a constraint update
Variants§
CreateInstance = 0
triggers createPvdInstance call, creates an instance of a constraint
ReleaseInstance = 1
triggers releasePvdInstance call, releases an instance of a constraint
UpdateAllProperties = 2
triggers updatePvdProperties call, updates all properties of a constraint
UpdateSimProperties = 3
triggers simUpdate call, updates all simulation properties of a constraint
Trait Implementations§
Source§impl Clone for PxPvdUpdateType
impl Clone for PxPvdUpdateType
Source§fn clone(&self) -> PxPvdUpdateType
fn clone(&self) -> PxPvdUpdateType
Returns a duplicate 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 Debug for PxPvdUpdateType
impl Debug for PxPvdUpdateType
Source§impl PartialEq for PxPvdUpdateType
impl PartialEq for PxPvdUpdateType
impl Copy for PxPvdUpdateType
impl Eq for PxPvdUpdateType
impl StructuralPartialEq for PxPvdUpdateType
Auto Trait Implementations§
impl Freeze for PxPvdUpdateType
impl RefUnwindSafe for PxPvdUpdateType
impl Send for PxPvdUpdateType
impl Sync for PxPvdUpdateType
impl Unpin for PxPvdUpdateType
impl UnwindSafe for PxPvdUpdateType
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