pub struct Header {
pub timestamp: Timestamp,
pub source: (Uuid, Uuid),
}
Expand description
Header for a dataflow message
Fields§
§timestamp: Timestamp
Timestamp of the message, representing when the message was created by the runtime (sender side)
source: (Uuid, Uuid)
Identifier of the message, representing the source node uuid and the IO it’s coming from (output, query or queryable)
Trait Implementations§
impl StructuralPartialEq for Header
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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