rskafka 0.6.0

A minimal Rust client for Apache Kafka
Documentation
1
2
3
4
5
6
7
use std::collections::BTreeSet;

#[derive(Debug)]
pub struct Topic {
    pub name: String,
    pub partitions: BTreeSet<i32>,
}