pub struct StreamId {
pub id: String,
pub map: HashMap<String, Value>,
}
Expand description
Represents a stream id
and its field/values as a HashMap
Fields§
§id: String
The stream id
(entry ID) of this particular message.
map: HashMap<String, Value>
All fields in this message, associated with their respective values.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StreamId
impl RefUnwindSafe for StreamId
impl Send for StreamId
impl Sync for StreamId
impl Unpin for StreamId
impl UnwindSafe for StreamId
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