Struct kafka::client::CommitOffset [] [src]

pub struct CommitOffset<'a> {
    pub offset: i64,
    pub topic: &'a str,
    pub partition: i32,
}

Data point identifying a particular topic partition offset to be commited. See KafkaClient::commit_offsets.

Fields

The offset to be committed

The topic to commit the offset for

The partition to commit the offset for

Methods

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

Trait Implementations

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

Formats the value using the given formatter.

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

Performs the conversion.