[][src]Struct kafka::client::metadata::Partitions

pub struct Partitions<'a> { /* fields omitted */ }

Metadata relevant to partitions of a particular topic.

Methods

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

pub fn len(&self) -> usize[src]

Retrieves the number of the topic's partitions.

pub fn is_empty(&self) -> bool[src]

Tests for .len() > 0.

Important traits for PartitionIter<'a>
pub fn iter(&self) -> PartitionIter<'a>[src]

Retrieves an iterator of the partitions of the underlying topic.

pub fn partition(&self, partition_id: i32) -> Option<Partition<'a>>[src]

Finds a specified partition identified by its id.

pub fn available_ids(&self) -> Vec<i32>[src]

Convenience method to retrieve the identifiers of all currently "available" partitions. Such partitions are known to have a leader broker and can be sent messages to.

Trait Implementations

impl<'a> IntoIterator for &'a Partitions<'a>[src]

type Item = Partition<'a>

The type of the elements being iterated over.

type IntoIter = PartitionIter<'a>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for Partitions<'a>[src]

type Item = Partition<'a>

The type of the elements being iterated over.

type IntoIter = PartitionIter<'a>

Which kind of iterator are we turning this into?

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

Auto Trait Implementations

impl<'a> Unpin for Partitions<'a>

impl<'a> Sync for Partitions<'a>

impl<'a> Send for Partitions<'a>

impl<'a> UnwindSafe for Partitions<'a>

impl<'a> RefUnwindSafe for Partitions<'a>

Blanket Implementations

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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>,