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 KEEP_ALIVE: u8 = 0u8
pub const POSE_UPDATE: u8 = 1u8
pub const MENU_SELECT: u8 = 2u8
pub const BUTTON_CLICK: u8 = 3u8
pub const MOUSE_DOWN: u8 = 4u8
pub const MOUSE_UP: u8 = 5u8
Trait Implementations§
Source§impl Clone for InteractiveMarkerFeedback
impl Clone for InteractiveMarkerFeedback
Source§fn clone(&self) -> InteractiveMarkerFeedback
fn clone(&self) -> InteractiveMarkerFeedback
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 InteractiveMarkerFeedback
impl Debug for InteractiveMarkerFeedback
Source§impl Default for InteractiveMarkerFeedback
impl Default for InteractiveMarkerFeedback
Source§impl<'de> Deserialize<'de> for InteractiveMarkerFeedback
impl<'de> Deserialize<'de> for InteractiveMarkerFeedback
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
impl Message for InteractiveMarkerFeedback
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