pub struct DomainParticipantFactoryQos {
pub autoenable_created_entities: bool,
}Expand description
QoS policy for the DomainParticipantFactory itself (Spec
§2.2.2.2.2.6 DomainParticipantFactoryQos). Currently a single
field autoenable_created_entities (default true); later spec
extensions are added here.
Fields§
§autoenable_created_entities: boolIf true, newly created entities are automatically enable()-d
on creation. Spec default: true.
Trait Implementations§
Source§impl Clone for DomainParticipantFactoryQos
impl Clone for DomainParticipantFactoryQos
Source§fn clone(&self) -> DomainParticipantFactoryQos
fn clone(&self) -> DomainParticipantFactoryQos
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DomainParticipantFactoryQos
Source§impl Debug for DomainParticipantFactoryQos
impl Debug for DomainParticipantFactoryQos
impl Eq for DomainParticipantFactoryQos
impl StructuralPartialEq for DomainParticipantFactoryQos
Auto Trait Implementations§
impl Freeze for DomainParticipantFactoryQos
impl RefUnwindSafe for DomainParticipantFactoryQos
impl Send for DomainParticipantFactoryQos
impl Sync for DomainParticipantFactoryQos
impl Unpin for DomainParticipantFactoryQos
impl UnsafeUnpin for DomainParticipantFactoryQos
impl UnwindSafe for DomainParticipantFactoryQos
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