pub type Bundle<T, C> = Message<Message<T, C>>;
Expand description
The input to and output from timely dataflow communication channels.
Aliased Type§
struct Bundle<T, C> {
pub payload: Message<T, C>,
}
Fields§
§payload: Message<T, C>
Bincode contents.
Implementations
source§impl<T> Bincode<T>
impl<T> Bincode<T>
sourcepub fn from_typed(typed: T) -> Self
pub fn from_typed(typed: T) -> Self
Wrap a typed item as a Bincode.