pub struct SedpEvents {
pub new_publications: Vec<PublicationBuiltinTopicData>,
pub new_subscriptions: Vec<SubscriptionBuiltinTopicData>,
}Expand description
Gesammelte Events aus einem Datagramm-Dispatch. Fuer Callers, die explizit auf neue Discoveries reagieren wollen (GUI, Logging).
Fields§
§new_publications: Vec<PublicationBuiltinTopicData>Neu empfangene Publications (bereits im Cache abgelegt).
new_subscriptions: Vec<SubscriptionBuiltinTopicData>Neu empfangene Subscriptions (bereits im Cache abgelegt).
Implementations§
Trait Implementations§
Source§impl Clone for SedpEvents
impl Clone for SedpEvents
Source§fn clone(&self) -> SedpEvents
fn clone(&self) -> SedpEvents
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 SedpEvents
impl Debug for SedpEvents
Source§impl Default for SedpEvents
impl Default for SedpEvents
Source§fn default() -> SedpEvents
fn default() -> SedpEvents
Returns the “default value” for a type. Read more
Source§impl PartialEq for SedpEvents
impl PartialEq for SedpEvents
Source§fn eq(&self, other: &SedpEvents) -> bool
fn eq(&self, other: &SedpEvents) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SedpEvents
impl StructuralPartialEq for SedpEvents
Auto Trait Implementations§
impl Freeze for SedpEvents
impl RefUnwindSafe for SedpEvents
impl Send for SedpEvents
impl Sync for SedpEvents
impl Unpin for SedpEvents
impl UnsafeUnpin for SedpEvents
impl UnwindSafe for SedpEvents
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