#[repr(C)]pub struct test_msgs__srv__Arrays_Request {Show 31 fields
pub bool_values: [bool; 3],
pub byte_values: [u8; 3],
pub char_values: [u8; 3],
pub float32_values: [f32; 3],
pub float64_values: [f64; 3],
pub int8_values: [i8; 3],
pub uint8_values: [u8; 3],
pub int16_values: [i16; 3],
pub uint16_values: [u16; 3],
pub int32_values: [i32; 3],
pub uint32_values: [u32; 3],
pub int64_values: [i64; 3],
pub uint64_values: [u64; 3],
pub string_values: [rosidl_runtime_c__String; 3],
pub basic_types_values: [test_msgs__msg__BasicTypes; 3],
pub constants_values: [test_msgs__msg__Constants; 3],
pub defaults_values: [test_msgs__msg__Defaults; 3],
pub bool_values_default: [bool; 3],
pub byte_values_default: [u8; 3],
pub char_values_default: [u8; 3],
pub float32_values_default: [f32; 3],
pub float64_values_default: [f64; 3],
pub int8_values_default: [i8; 3],
pub uint8_values_default: [u8; 3],
pub int16_values_default: [i16; 3],
pub uint16_values_default: [u16; 3],
pub int32_values_default: [i32; 3],
pub uint32_values_default: [u32; 3],
pub int64_values_default: [i64; 3],
pub uint64_values_default: [u64; 3],
pub string_values_default: [rosidl_runtime_c__String; 3],
}Fields§
§bool_values: [bool; 3]§byte_values: [u8; 3]§char_values: [u8; 3]§float32_values: [f32; 3]§float64_values: [f64; 3]§int8_values: [i8; 3]§uint8_values: [u8; 3]§int16_values: [i16; 3]§uint16_values: [u16; 3]§int32_values: [i32; 3]§uint32_values: [u32; 3]§int64_values: [i64; 3]§uint64_values: [u64; 3]§string_values: [rosidl_runtime_c__String; 3]§basic_types_values: [test_msgs__msg__BasicTypes; 3]§constants_values: [test_msgs__msg__Constants; 3]§defaults_values: [test_msgs__msg__Defaults; 3]§bool_values_default: [bool; 3]§byte_values_default: [u8; 3]§char_values_default: [u8; 3]§float32_values_default: [f32; 3]§float64_values_default: [f64; 3]§int8_values_default: [i8; 3]§uint8_values_default: [u8; 3]§int16_values_default: [i16; 3]§uint16_values_default: [u16; 3]§int32_values_default: [i32; 3]§uint32_values_default: [u32; 3]§int64_values_default: [i64; 3]§uint64_values_default: [u64; 3]§string_values_default: [rosidl_runtime_c__String; 3]Auto Trait Implementations§
impl Freeze for test_msgs__srv__Arrays_Request
impl RefUnwindSafe for test_msgs__srv__Arrays_Request
impl !Send for test_msgs__srv__Arrays_Request
impl !Sync for test_msgs__srv__Arrays_Request
impl Unpin for test_msgs__srv__Arrays_Request
impl UnwindSafe for test_msgs__srv__Arrays_Request
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more