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

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

topic: &'a str

The topic to fetch the group offset for

partition: i32

The partition to fetch the group offset for

Methods

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

pub fn new(topic: &'a str, partition: i32) -> Self[src]

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> Unpin for FetchGroupOffset<'a>

impl<'a> Sync for FetchGroupOffset<'a>

impl<'a> Send for FetchGroupOffset<'a>

impl<'a> UnwindSafe for FetchGroupOffset<'a>

impl<'a> RefUnwindSafe for FetchGroupOffset<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,