pub struct JointValidator<const N: usize> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<const N: usize> Clone for JointValidator<N>
impl<const N: usize> Clone for JointValidator<N>
Source§fn clone(&self) -> JointValidator<N>
fn clone(&self) -> JointValidator<N>
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<const N: usize> Debug for JointValidator<N>
impl<const N: usize> Debug for JointValidator<N>
Source§impl From<JointValidator<1>> for DynamicJointValidator
impl From<JointValidator<1>> for DynamicJointValidator
Source§fn from(v: JointValidator<1>) -> Self
fn from(v: JointValidator<1>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<2>> for DynamicJointValidator
impl From<JointValidator<2>> for DynamicJointValidator
Source§fn from(v: JointValidator<2>) -> Self
fn from(v: JointValidator<2>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<3>> for DynamicJointValidator
impl From<JointValidator<3>> for DynamicJointValidator
Source§fn from(v: JointValidator<3>) -> Self
fn from(v: JointValidator<3>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<4>> for DynamicJointValidator
impl From<JointValidator<4>> for DynamicJointValidator
Source§fn from(v: JointValidator<4>) -> Self
fn from(v: JointValidator<4>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<5>> for DynamicJointValidator
impl From<JointValidator<5>> for DynamicJointValidator
Source§fn from(v: JointValidator<5>) -> Self
fn from(v: JointValidator<5>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<6>> for DynamicJointValidator
impl From<JointValidator<6>> for DynamicJointValidator
Source§fn from(v: JointValidator<6>) -> Self
fn from(v: JointValidator<6>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<7>> for DynamicJointValidator
impl From<JointValidator<7>> for DynamicJointValidator
Source§fn from(v: JointValidator<7>) -> Self
fn from(v: JointValidator<7>) -> Self
Converts to this type from the input type.
Source§impl From<JointValidator<8>> for DynamicJointValidator
impl From<JointValidator<8>> for DynamicJointValidator
Source§fn from(v: JointValidator<8>) -> Self
fn from(v: JointValidator<8>) -> Self
Converts to this type from the input type.
Source§impl<const N: usize> Validator<N> for JointValidator<N>
impl<const N: usize> Validator<N> for JointValidator<N>
type Context<'ctx> = ()
fn validate<'ctx, E: Into<DekeError>, Q: SRobotQLike<N, E>>( &self, q: Q, _ctx: &Self::Context<'ctx>, ) -> DekeResult<()>
fn validate_motion<'ctx>( &self, qs: &[SRobotQ<N>], _ctx: &Self::Context<'ctx>, ) -> DekeResult<()>
Auto Trait Implementations§
impl<const N: usize> Freeze for JointValidator<N>
impl<const N: usize> !RefUnwindSafe for JointValidator<N>
impl<const N: usize> Send for JointValidator<N>
impl<const N: usize> Sync for JointValidator<N>
impl<const N: usize> Unpin for JointValidator<N>
impl<const N: usize> UnsafeUnpin for JointValidator<N>
impl<const N: usize> !UnwindSafe for JointValidator<N>
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