pub struct DomainParticipantLibrary {
pub name: String,
pub participants: Vec<DomainParticipantEntry>,
}Expand description
Container fuer 1+ Participant-Definitionen (§7.3.5.4.1).
Fields§
§name: StringLibrary-Name.
participants: Vec<DomainParticipantEntry>Participant-Definitionen in Dokument-Reihenfolge.
Implementations§
Source§impl DomainParticipantLibrary
impl DomainParticipantLibrary
Sourcepub fn participant(&self, name: &str) -> Option<&DomainParticipantEntry>
pub fn participant(&self, name: &str) -> Option<&DomainParticipantEntry>
Sucht einen Participant innerhalb dieser Library.
Trait Implementations§
Source§impl Clone for DomainParticipantLibrary
impl Clone for DomainParticipantLibrary
Source§fn clone(&self) -> DomainParticipantLibrary
fn clone(&self) -> DomainParticipantLibrary
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 moreSource§impl Debug for DomainParticipantLibrary
impl Debug for DomainParticipantLibrary
Source§impl Default for DomainParticipantLibrary
impl Default for DomainParticipantLibrary
Source§fn default() -> DomainParticipantLibrary
fn default() -> DomainParticipantLibrary
Returns the “default value” for a type. Read more
Source§impl PartialEq for DomainParticipantLibrary
impl PartialEq for DomainParticipantLibrary
Source§fn eq(&self, other: &DomainParticipantLibrary) -> bool
fn eq(&self, other: &DomainParticipantLibrary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DomainParticipantLibrary
impl StructuralPartialEq for DomainParticipantLibrary
Auto Trait Implementations§
impl Freeze for DomainParticipantLibrary
impl RefUnwindSafe for DomainParticipantLibrary
impl Send for DomainParticipantLibrary
impl Sync for DomainParticipantLibrary
impl Unpin for DomainParticipantLibrary
impl UnsafeUnpin for DomainParticipantLibrary
impl UnwindSafe for DomainParticipantLibrary
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