pub struct ExtendedEventLinkageEntry {
pub target_event_id: u16,
pub target_listed: bool,
pub event_simulcast: bool,
pub link_type: LinkType,
pub target_id_type: TargetIdType,
pub original_network_id_flag: bool,
pub service_id_flag: bool,
pub target_id: TargetId,
}Expand description
One entry in the extended event linkage loop — EN 300 468 Table 65.
Fields§
§target_event_id: u16target_event_id — 16 bits.
target_listed: booltarget_listed — 1 bit [7].
event_simulcast: boolevent_simulcast — 1 bit [6].
link_type: LinkTypelink_type — 2 bits [5:4]. See Table 66.
target_id_type: TargetIdTypetarget_id_type — 2 bits [3:2]. See Table 67.
original_network_id_flag: booloriginal_network_id_flag — 1 bit [1].
service_id_flag: boolservice_id_flag — 1 bit [0].
target_id: TargetIdConditional target identification.
Trait Implementations§
Source§impl Clone for ExtendedEventLinkageEntry
impl Clone for ExtendedEventLinkageEntry
Source§fn clone(&self) -> ExtendedEventLinkageEntry
fn clone(&self) -> ExtendedEventLinkageEntry
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 ExtendedEventLinkageEntry
impl Debug for ExtendedEventLinkageEntry
impl Eq for ExtendedEventLinkageEntry
Source§impl PartialEq for ExtendedEventLinkageEntry
impl PartialEq for ExtendedEventLinkageEntry
Source§fn eq(&self, other: &ExtendedEventLinkageEntry) -> bool
fn eq(&self, other: &ExtendedEventLinkageEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExtendedEventLinkageEntry
Auto Trait Implementations§
impl Freeze for ExtendedEventLinkageEntry
impl RefUnwindSafe for ExtendedEventLinkageEntry
impl Send for ExtendedEventLinkageEntry
impl Sync for ExtendedEventLinkageEntry
impl Unpin for ExtendedEventLinkageEntry
impl UnsafeUnpin for ExtendedEventLinkageEntry
impl UnwindSafe for ExtendedEventLinkageEntry
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