Struct dds_qos

Source
#[repr(C)]
pub struct dds_qos {
Show 30 fields pub present: u64, pub aliased: u64, pub topic_name: *mut c_char, pub type_name: *mut c_char, pub presentation: dds_presentation_qospolicy_t, pub partition: dds_partition_qospolicy_t, pub group_data: dds_groupdata_qospolicy_t, pub entity_factory: dds_entity_factory_qospolicy_t, pub topic_data: dds_topicdata_qospolicy_t, pub durability: dds_durability_qospolicy_t, pub durability_service: dds_durability_service_qospolicy_t, pub deadline: dds_deadline_qospolicy_t, pub latency_budget: dds_latency_budget_qospolicy_t, pub liveliness: dds_liveliness_qospolicy_t, pub reliability: dds_reliability_qospolicy_t, pub destination_order: dds_destination_order_qospolicy_t, pub history: dds_history_qospolicy_t, pub resource_limits: dds_resource_limits_qospolicy_t, pub transport_priority: dds_transport_priority_qospolicy_t, pub lifespan: dds_lifespan_qospolicy_t, pub user_data: dds_userdata_qospolicy_t, pub ownership: dds_ownership_qospolicy_t, pub ownership_strength: dds_ownership_strength_qospolicy_t, pub time_based_filter: dds_time_based_filter_qospolicy_t, pub writer_data_lifecycle: dds_writer_data_lifecycle_qospolicy_t, pub reader_data_lifecycle: dds_reader_data_lifecycle_qospolicy_t, pub subscription_keys: dds_subscription_keys_qospolicy_t, pub reader_lifespan: dds_reader_lifespan_qospolicy_t, pub ignorelocal: dds_ignorelocal_qospolicy_t, pub property: dds_property_qospolicy_t,
}

Fields§

§present: u64§aliased: u64§topic_name: *mut c_char§type_name: *mut c_char§presentation: dds_presentation_qospolicy_t§partition: dds_partition_qospolicy_t§group_data: dds_groupdata_qospolicy_t§entity_factory: dds_entity_factory_qospolicy_t§topic_data: dds_topicdata_qospolicy_t§durability: dds_durability_qospolicy_t§durability_service: dds_durability_service_qospolicy_t§deadline: dds_deadline_qospolicy_t§latency_budget: dds_latency_budget_qospolicy_t§liveliness: dds_liveliness_qospolicy_t§reliability: dds_reliability_qospolicy_t§destination_order: dds_destination_order_qospolicy_t§history: dds_history_qospolicy_t§resource_limits: dds_resource_limits_qospolicy_t§transport_priority: dds_transport_priority_qospolicy_t§lifespan: dds_lifespan_qospolicy_t§user_data: dds_userdata_qospolicy_t§ownership: dds_ownership_qospolicy_t§ownership_strength: dds_ownership_strength_qospolicy_t§time_based_filter: dds_time_based_filter_qospolicy_t§writer_data_lifecycle: dds_writer_data_lifecycle_qospolicy_t§reader_data_lifecycle: dds_reader_data_lifecycle_qospolicy_t§subscription_keys: dds_subscription_keys_qospolicy_t§reader_lifespan: dds_reader_lifespan_qospolicy_t§ignorelocal: dds_ignorelocal_qospolicy_t§property: dds_property_qospolicy_t

Trait Implementations§

Source§

impl Clone for dds_qos

Source§

fn clone(&self) -> dds_qos

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for dds_qos

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for dds_qos

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.