#[repr(C)]pub struct dds_builtintopic_endpoint {
pub key: dds_guid_t,
pub participant_key: dds_guid_t,
pub participant_instance_handle: dds_instance_handle_t,
pub topic_name: *mut c_char,
pub type_name: *mut c_char,
pub qos: *mut dds_qos_t,
}Expand description
@brief Sample structure of the Builtin topic DcpsPublication and DcpsSubscription. @ingroup builtintopic
Fields§
§key: dds_guid_t< The GUID that uniquely identifies the endpoint on the network
participant_key: dds_guid_t< The GUID of the participant this endpoint belongs to.
participant_instance_handle: dds_instance_handle_t< The instance handle the participant assigned to this enpoint.
topic_name: *mut c_char< The name of the topic, potentially unicode.
type_name: *mut c_char< The name of the type, potentially unicode.
qos: *mut dds_qos_t< The QoS of the endpoint
Trait Implementations§
Source§impl Clone for dds_builtintopic_endpoint
impl Clone for dds_builtintopic_endpoint
Source§fn clone(&self) -> dds_builtintopic_endpoint
fn clone(&self) -> dds_builtintopic_endpoint
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 dds_builtintopic_endpoint
impl Debug for dds_builtintopic_endpoint
Source§impl Default for dds_builtintopic_endpoint
impl Default for dds_builtintopic_endpoint
impl Copy for dds_builtintopic_endpoint
Auto Trait Implementations§
impl Freeze for dds_builtintopic_endpoint
impl RefUnwindSafe for dds_builtintopic_endpoint
impl !Send for dds_builtintopic_endpoint
impl !Sync for dds_builtintopic_endpoint
impl Unpin for dds_builtintopic_endpoint
impl UnsafeUnpin for dds_builtintopic_endpoint
impl UnwindSafe for dds_builtintopic_endpoint
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