Struct rustdds::dds::qos::QosPolicies[][src]

pub struct QosPolicies { /* fields omitted */ }

Describes single RTPS/DDS QoS policy

Implementations

impl QosPolicies[src]

pub const fn builder() -> QosPolicyBuilder[src]

pub const fn durability(&self) -> Option<Durability>[src]

pub const fn presentation(&self) -> Option<Presentation>[src]

pub const fn deadline(&self) -> Option<Deadline>[src]

pub const fn latency_budget(&self) -> Option<LatencyBudget>[src]

pub const fn ownership(&self) -> Option<Ownership>[src]

pub const fn liveliness(&self) -> Option<Liveliness>[src]

pub const fn time_based_filter(&self) -> Option<TimeBasedFilter>[src]

pub const fn reliability(&self) -> Option<Reliability>[src]

pub const fn destination_order(&self) -> Option<DestinationOrder>[src]

pub const fn history(&self) -> Option<History>[src]

pub const fn resource_limits(&self) -> Option<ResourceLimits>[src]

pub const fn lifespan(&self) -> Option<Lifespan>[src]

pub fn modify_by(&self, other: &QosPolicies) -> QosPolicies[src]

pub fn compliance_failure_wrt(&self, other: &QosPolicies) -> Option<QosPolicyId>[src]

pub fn compliance_failure_wrt_impl(
    &self,
    other: &QosPolicies
) -> Option<QosPolicyId>
[src]

Trait Implementations

impl Clone for QosPolicies[src]

impl Debug for QosPolicies[src]

impl Eq for QosPolicies[src]

impl PartialEq<QosPolicies> for QosPolicies[src]

impl StructuralEq for QosPolicies[src]

impl StructuralPartialEq for QosPolicies[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,