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
sourceimpl 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
sourceimpl Clone for InteractiveMarkerFeedback
impl Clone for InteractiveMarkerFeedback
sourcefn clone(&self) -> InteractiveMarkerFeedback
fn clone(&self) -> InteractiveMarkerFeedback
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InteractiveMarkerFeedback
impl Debug for InteractiveMarkerFeedback
sourceimpl Default for InteractiveMarkerFeedback
impl Default for InteractiveMarkerFeedback
sourceimpl MessageT for InteractiveMarkerFeedback
impl MessageT for InteractiveMarkerFeedback
type Raw = InteractiveMarkerFeedback_Raw
type RawRef = InteractiveMarkerFeedback_RawRef
fn type_support() -> *const c_void
unsafe fn from_raw(from: &Self::Raw) -> Self
unsafe fn to_raw_ref(&self) -> Self::RawRef
sourceimpl PartialEq<InteractiveMarkerFeedback> for InteractiveMarkerFeedback
impl PartialEq<InteractiveMarkerFeedback> for InteractiveMarkerFeedback
sourcefn eq(&self, other: &InteractiveMarkerFeedback) -> bool
fn eq(&self, other: &InteractiveMarkerFeedback) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InteractiveMarkerFeedback) -> bool
fn ne(&self, other: &InteractiveMarkerFeedback) -> bool
This method tests for !=
.
impl StructuralPartialEq for InteractiveMarkerFeedback
Auto Trait Implementations
impl RefUnwindSafe for InteractiveMarkerFeedback
impl Send for InteractiveMarkerFeedback
impl Sync for InteractiveMarkerFeedback
impl Unpin for InteractiveMarkerFeedback
impl UnwindSafe for InteractiveMarkerFeedback
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more