pub struct AwarenessMap {
pub ecosystem: String,
pub event_type: String,
pub facts: HashMap<String, String>,
}Expand description
Structured domain facts extracted from a RawSignal.
Fields§
§ecosystem: String§event_type: String§facts: HashMap<String, String>Implementations§
Trait Implementations§
Source§impl Clone for AwarenessMap
impl Clone for AwarenessMap
Source§fn clone(&self) -> AwarenessMap
fn clone(&self) -> AwarenessMap
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 AwarenessMap
impl Debug for AwarenessMap
Source§impl Default for AwarenessMap
impl Default for AwarenessMap
Source§fn default() -> AwarenessMap
fn default() -> AwarenessMap
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AwarenessMap
impl RefUnwindSafe for AwarenessMap
impl Send for AwarenessMap
impl Sync for AwarenessMap
impl Unpin for AwarenessMap
impl UnsafeUnpin for AwarenessMap
impl UnwindSafe for AwarenessMap
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