pub struct Int64MultiArray {
pub layout: MultiArrayLayout,
pub data: Vec<i64>,
}
Fields§
§layout: MultiArrayLayout
§data: Vec<i64>
Trait Implementations§
Source§impl Clone for Int64MultiArray
impl Clone for Int64MultiArray
Source§fn clone(&self) -> Int64MultiArray
fn clone(&self) -> Int64MultiArray
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 Int64MultiArray
impl Debug for Int64MultiArray
Source§impl Default for Int64MultiArray
impl Default for Int64MultiArray
Source§impl<'de> Deserialize<'de> for Int64MultiArray
impl<'de> Deserialize<'de> for Int64MultiArray
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 PartialEq for Int64MultiArray
impl PartialEq for Int64MultiArray
Source§impl RosMessageType for Int64MultiArray
impl RosMessageType for Int64MultiArray
Source§const ROS_TYPE_NAME: &'static str = "std_msgs/Int64MultiArray"
const ROS_TYPE_NAME: &'static str = "std_msgs/Int64MultiArray"
Expected to be the combination pkg_name/type_name string describing the type to ros
Example: std_msgs/Header
Source§const MD5SUM: &'static str = "54865aa6c65be0448113a2afc6a49270"
const MD5SUM: &'static str = "54865aa6c65be0448113a2afc6a49270"
The computed md5sum of the message file and its dependencies
This field is optional, and only needed when using ros1 native communication
Source§const DEFINITION: &'static str = "# This was originally provided as an example message.\n# It is deprecated as of Foxy\n# It is recommended to create your own semantically meaningful message.\n# However if you would like to continue using this please use the equivalent in example_msgs.\n\n# Please look at the MultiArrayLayout message definition for\n# documentation on all multiarrays.\n\nMultiArrayLayout layout # specification of data layout\nint64[] data # array of data"
const DEFINITION: &'static str = "# This was originally provided as an example message.\n# It is deprecated as of Foxy\n# It is recommended to create your own semantically meaningful message.\n# However if you would like to continue using this please use the equivalent in example_msgs.\n\n# Please look at the MultiArrayLayout message definition for\n# documentation on all multiarrays.\n\nMultiArrayLayout layout # specification of data layout\nint64[] data # array of data"
The definition from the msg, srv, or action file
This field is optional, and only needed when using ros1 native communication
Source§impl Serialize for Int64MultiArray
impl Serialize for Int64MultiArray
impl StructuralPartialEq for Int64MultiArray
Auto Trait Implementations§
impl Freeze for Int64MultiArray
impl RefUnwindSafe for Int64MultiArray
impl Send for Int64MultiArray
impl Sync for Int64MultiArray
impl Unpin for Int64MultiArray
impl UnwindSafe for Int64MultiArray
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