Struct arci::JointPositionLimit
source · pub struct JointPositionLimit(/* private fields */);
Implementations§
Trait Implementations§
source§impl Clone for JointPositionLimit
impl Clone for JointPositionLimit
source§fn clone(&self) -> JointPositionLimit
fn clone(&self) -> JointPositionLimit
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 Debug for JointPositionLimit
impl Debug for JointPositionLimit
source§impl Default for JointPositionLimit
impl Default for JointPositionLimit
source§fn default() -> JointPositionLimit
fn default() -> JointPositionLimit
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for JointPositionLimit
impl<'de> Deserialize<'de> for JointPositionLimit
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
source§impl From<JointLimit> for JointPositionLimit
impl From<JointLimit> for JointPositionLimit
source§fn from(l: JointLimit) -> Self
fn from(l: JointLimit) -> Self
Converts to this type from the input type.
source§impl From<RangeInclusive<f64>> for JointPositionLimit
impl From<RangeInclusive<f64>> for JointPositionLimit
source§fn from(r: RangeInclusive<f64>) -> Self
fn from(r: RangeInclusive<f64>) -> Self
Converts to this type from the input type.
source§impl JsonSchema for JointPositionLimit
impl JsonSchema for JointPositionLimit
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl Serialize for JointPositionLimit
impl Serialize for JointPositionLimit
impl Copy for JointPositionLimit
Auto Trait Implementations§
impl Freeze for JointPositionLimit
impl RefUnwindSafe for JointPositionLimit
impl Send for JointPositionLimit
impl Sync for JointPositionLimit
impl Unpin for JointPositionLimit
impl UnwindSafe for JointPositionLimit
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.