Struct r2r::rcl_interfaces::msg::ParameterEvent
source · pub struct ParameterEvent {
pub stamp: Time,
pub node: String,
pub new_parameters: Vec<Parameter>,
pub changed_parameters: Vec<Parameter>,
pub deleted_parameters: Vec<Parameter>,
}
Fields§
§stamp: Time
§node: String
§new_parameters: Vec<Parameter>
§changed_parameters: Vec<Parameter>
§deleted_parameters: Vec<Parameter>
Trait Implementations§
source§impl Clone for ParameterEvent
impl Clone for ParameterEvent
source§fn clone(&self) -> ParameterEvent
fn clone(&self) -> ParameterEvent
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 ParameterEvent
impl Debug for ParameterEvent
source§impl Default for ParameterEvent
impl Default for ParameterEvent
source§impl<'de> Deserialize<'de> for ParameterEventwhere
ParameterEvent: Default,
impl<'de> Deserialize<'de> for ParameterEventwhere
ParameterEvent: 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 PartialEq for ParameterEvent
impl PartialEq for ParameterEvent
source§impl Serialize for ParameterEvent
impl Serialize for ParameterEvent
source§impl WrappedTypesupport for ParameterEvent
impl WrappedTypesupport for ParameterEvent
type CStruct = rcl_interfaces__msg__ParameterEvent
fn get_ts() -> &'static rosidl_message_type_support_t
fn create_msg() -> *mut rcl_interfaces__msg__ParameterEvent
fn destroy_msg(msg: *mut rcl_interfaces__msg__ParameterEvent)
fn from_native(msg: &Self::CStruct) -> ParameterEvent
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 ParameterEvent
Auto Trait Implementations§
impl Freeze for ParameterEvent
impl RefUnwindSafe for ParameterEvent
impl Send for ParameterEvent
impl Sync for ParameterEvent
impl Unpin for ParameterEvent
impl UnwindSafe for ParameterEvent
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