#[repr(C)]pub struct dds_psmx_topic {
pub ops: dds_psmx_topic_ops_t,
pub psmx_instance: *mut dds_psmx,
pub topic_name: *const c_char,
pub type_name: *const c_char,
pub data_type: dds_loan_data_type_t,
pub psmx_endpoints: *mut c_void,
pub data_type_props: dds_data_type_properties_t,
}Expand description
@brief Type representing a PSMX Topic in a DDS Domain Entity @ingroup psmx
Fields§
§ops: dds_psmx_topic_ops_t< operations on the PSMX Topic
psmx_instance: *mut dds_psmx< PSMX Instance which created this PSMX Topic
topic_name: *const c_char< Topic name
type_name: *const c_char< Type name
data_type: dds_loan_data_type_t< Reserved, must be 0
psmx_endpoints: *mut c_void< Reserved, must be 0
data_type_props: dds_data_type_properties_t< Properties of the data type associated with this topic
Trait Implementations§
Source§impl Clone for dds_psmx_topic
impl Clone for dds_psmx_topic
Source§fn clone(&self) -> dds_psmx_topic
fn clone(&self) -> dds_psmx_topic
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_psmx_topic
impl Debug for dds_psmx_topic
Source§impl Default for dds_psmx_topic
impl Default for dds_psmx_topic
impl Copy for dds_psmx_topic
Auto Trait Implementations§
impl Freeze for dds_psmx_topic
impl RefUnwindSafe for dds_psmx_topic
impl !Send for dds_psmx_topic
impl !Sync for dds_psmx_topic
impl Unpin for dds_psmx_topic
impl UnsafeUnpin for dds_psmx_topic
impl UnwindSafe for dds_psmx_topic
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