Struct kafka::client::FetchGroupOffset [] [src]

pub struct FetchGroupOffset<'a> {
    pub topic: &'a str,
    pub partition: i32,
}

Data point identifying a topic partition to fetch a group's offset for. See KafkaClient::fetch_group_offsets.

Fields

The topic to fetch the group offset for

The partition to fetch the group offset for

Methods

impl<'a> FetchGroupOffset<'a>
[src]

Trait Implementations

impl<'a> Debug for FetchGroupOffset<'a>
[src]

Formats the value using the given formatter.

impl<'a> AsRef<FetchGroupOffset<'a>> for FetchGroupOffset<'a>
[src]

Performs the conversion.