pub struct InteractiveMarkerUpdate {
pub server_id: String,
pub seq_num: u64,
pub type_: u8,
pub markers: Vec<InteractiveMarker>,
pub poses: Vec<InteractiveMarkerPose>,
pub erases: Vec<String>,
}
Fields§
§server_id: String
§seq_num: u64
§type_: u8
§markers: Vec<InteractiveMarker>
§poses: Vec<InteractiveMarkerPose>
§erases: Vec<String>
Implementations§
Trait Implementations§
Source§impl Clone for InteractiveMarkerUpdate
impl Clone for InteractiveMarkerUpdate
Source§fn clone(&self) -> InteractiveMarkerUpdate
fn clone(&self) -> InteractiveMarkerUpdate
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 InteractiveMarkerUpdate
impl Debug for InteractiveMarkerUpdate
Source§impl Default for InteractiveMarkerUpdate
impl Default for InteractiveMarkerUpdate
Source§impl<'de> Deserialize<'de> for InteractiveMarkerUpdate
impl<'de> Deserialize<'de> for InteractiveMarkerUpdate
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 InteractiveMarkerUpdate
impl PartialEq for InteractiveMarkerUpdate
Source§impl Serialize for InteractiveMarkerUpdate
impl Serialize for InteractiveMarkerUpdate
impl Message for InteractiveMarkerUpdate
impl StructuralPartialEq for InteractiveMarkerUpdate
Auto Trait Implementations§
impl Freeze for InteractiveMarkerUpdate
impl RefUnwindSafe for InteractiveMarkerUpdate
impl Send for InteractiveMarkerUpdate
impl Sync for InteractiveMarkerUpdate
impl Unpin for InteractiveMarkerUpdate
impl UnwindSafe for InteractiveMarkerUpdate
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