ros2_interfaces_jazzy_rkyv/std_msgs/msg/
string.rs1use rkyv::{Archive, Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, Archive)]
4pub struct String {
5 pub data: ::std::string::String,
6}
7
8impl Default for String {
9 fn default() -> Self {
10 String {
11 data: ::std::string::String::new(),
12 }
13 }
14}