numaflow 0.5.0

Rust SDK for Numaflow
Documentation
// This file is @generated by prost-build.
/// Metadata is the metadata of the message
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Metadata {
    /// PreviousVertex is the name of the previous vertex
    #[prost(string, tag = "1")]
    pub previous_vertex: ::prost::alloc::string::String,
    /// SystemMetadata is the system metadata of the message
    /// Key of the map is the group name
    #[prost(map = "string, message", tag = "2")]
    pub sys_metadata: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        KeyValueGroup,
    >,
    /// UserMetadata is the user metadata of the message
    /// Key of the map is the group name
    #[prost(map = "string, message", tag = "3")]
    pub user_metadata: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        KeyValueGroup,
    >,
}
/// KeyValueGroup is a group of key-value pairs for a given group.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct KeyValueGroup {
    #[prost(map = "string, bytes", tag = "1")]
    pub key_value: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        ::prost::alloc::vec::Vec<u8>,
    >,
}