Struct r2r::visualization_msgs::msg::InteractiveMarkerFeedback
source · pub struct InteractiveMarkerFeedback {
pub header: Header,
pub client_id: String,
pub marker_name: String,
pub control_name: String,
pub event_type: u8,
pub pose: Pose,
pub menu_entry_id: u32,
pub mouse_point: Point,
pub mouse_point_valid: bool,
}
Fields§
§header: Header
§client_id: String
§marker_name: String
§control_name: String
§event_type: u8
§pose: Pose
§mouse_point: Point
§mouse_point_valid: bool
Implementations§
source§impl InteractiveMarkerFeedback
impl InteractiveMarkerFeedback
pub const BUTTON_CLICK: _bindgen_ty_235 = visualization_msgs__msg__InteractiveMarkerFeedback__BUTTON_CLICK
pub const KEEP_ALIVE: _bindgen_ty_232 = visualization_msgs__msg__InteractiveMarkerFeedback__KEEP_ALIVE
pub const MENU_SELECT: _bindgen_ty_234 = visualization_msgs__msg__InteractiveMarkerFeedback__MENU_SELECT
pub const MOUSE_DOWN: _bindgen_ty_236 = visualization_msgs__msg__InteractiveMarkerFeedback__MOUSE_DOWN
pub const MOUSE_UP: _bindgen_ty_237 = visualization_msgs__msg__InteractiveMarkerFeedback__MOUSE_UP
pub const POSE_UPDATE: _bindgen_ty_233 = visualization_msgs__msg__InteractiveMarkerFeedback__POSE_UPDATE
Trait Implementations§
source§impl Clone for InteractiveMarkerFeedback
impl Clone for InteractiveMarkerFeedback
source§fn clone(&self) -> InteractiveMarkerFeedback
fn clone(&self) -> InteractiveMarkerFeedback
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 InteractiveMarkerFeedback
impl Debug for InteractiveMarkerFeedback
source§impl Default for InteractiveMarkerFeedback
impl Default for InteractiveMarkerFeedback
source§impl<'de> Deserialize<'de> for InteractiveMarkerFeedbackwhere
InteractiveMarkerFeedback: Default,
impl<'de> Deserialize<'de> for InteractiveMarkerFeedbackwhere
InteractiveMarkerFeedback: Default,
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 WrappedTypesupport for InteractiveMarkerFeedback
impl WrappedTypesupport for InteractiveMarkerFeedback
type CStruct = visualization_msgs__msg__InteractiveMarkerFeedback
fn get_ts() -> &'static rosidl_message_type_support_t
fn create_msg() -> *mut visualization_msgs__msg__InteractiveMarkerFeedback
fn destroy_msg(msg: *mut visualization_msgs__msg__InteractiveMarkerFeedback)
fn from_native(msg: &Self::CStruct) -> InteractiveMarkerFeedback
fn copy_to_native(&self, msg: &mut Self::CStruct)
source§fn to_serialized_bytes(&self) -> Result<Vec<u8>>
fn to_serialized_bytes(&self) -> Result<Vec<u8>>
This serializes the message using ROS2 methods.
source§fn from_serialized_bytes(data: &[u8]) -> Result<Self>
fn from_serialized_bytes(data: &[u8]) -> Result<Self>
This deserializes the message using ROS2 methods.
impl StructuralPartialEq for InteractiveMarkerFeedback
Auto Trait Implementations§
impl Freeze for InteractiveMarkerFeedback
impl RefUnwindSafe for InteractiveMarkerFeedback
impl Send for InteractiveMarkerFeedback
impl Sync for InteractiveMarkerFeedback
impl Unpin for InteractiveMarkerFeedback
impl UnwindSafe for InteractiveMarkerFeedback
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> 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