#[repr(C)]pub struct IntegerRange {
pub from_value: i64,
pub to_value: i64,
pub step: u64,
}Fields§
§from_value: i64§to_value: i64§step: u64Implementations§
Trait Implementations§
Source§impl Clone for IntegerRange
impl Clone for IntegerRange
Source§impl Debug for IntegerRange
impl Debug for IntegerRange
Source§impl Default for IntegerRange
impl Default for IntegerRange
Source§impl<'de> Deserialize<'de> for IntegerRange
impl<'de> Deserialize<'de> for IntegerRange
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<&IntegerRange> for IntegerRange
impl From<&IntegerRange> for IntegerRange
Source§fn from(range: &IntegerRange) -> Self
fn from(range: &IntegerRange) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IntegerRange
impl PartialEq for IntegerRange
Source§impl RosFieldType for IntegerRange
impl RosFieldType for IntegerRange
Source§fn ros_field_type() -> FieldType
fn ros_field_type() -> FieldType
Returns the FieldType for this type when used as a field.
Source§fn referenced_types() -> Vec<IndividualTypeDescription>
fn referenced_types() -> Vec<IndividualTypeDescription>
Returns referenced type descriptions (empty for primitives, populated for nested types).
Source§impl Serialize for IntegerRange
impl Serialize for IntegerRange
Source§impl TryClone for IntegerRange
impl TryClone for IntegerRange
Source§impl TypeDescription for IntegerRange
impl TypeDescription for IntegerRange
Source§fn type_description() -> TypeDescriptionMsg
fn type_description() -> TypeDescriptionMsg
Get the type description for this type Read more
Source§fn message_type_name() -> MessageTypeName
fn message_type_name() -> MessageTypeName
Get the message type name information Read more
Auto Trait Implementations§
impl Freeze for IntegerRange
impl RefUnwindSafe for IntegerRange
impl Send for IntegerRange
impl Sync for IntegerRange
impl Unpin for IntegerRange
impl UnsafeUnpin for IntegerRange
impl UnwindSafe for IntegerRange
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