[][src]Struct nakadi_types::event_type::PartitionKeyFields

pub struct PartitionKeyFields(_);

Required when 'partition_resolution_strategy' is set to ‘hash’. Must be absent otherwise. Indicates the fields used for evaluation the partition of Events of this type.

If this is set it MUST be a valid required field as defined in the schema.

See also Nakadi Manual

Implementations

impl PartitionKeyFields[src]

pub fn new<I>(items: I) -> Self where
    I: IntoIterator,
    I::Item: Into<PartitionKeyField>, 
[src]

pub fn partition_key<T: Into<PartitionKeyField>>(self, v: T) -> Self[src]

pub fn push<T: Into<PartitionKeyField>>(&mut self, v: T)[src]

pub fn into_inner(self) -> Vec<PartitionKeyField>[src]

pub fn iter(&self) -> impl Iterator<Item = &PartitionKeyField>[src]

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut PartitionKeyField>[src]

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

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

Trait Implementations

impl AsRef<[PartitionKeyField]> for PartitionKeyFields[src]

impl Clone for PartitionKeyFields[src]

impl Debug for PartitionKeyFields[src]

impl Default for PartitionKeyFields[src]

impl<'de> Deserialize<'de> for PartitionKeyFields[src]

impl<A, B, C> From<(A, B, C)> for PartitionKeyFields where
    A: Into<PartitionKeyField>,
    B: Into<PartitionKeyField>,
    C: Into<PartitionKeyField>, 
[src]

impl<A, B> From<(A, B)> for PartitionKeyFields where
    A: Into<PartitionKeyField>,
    B: Into<PartitionKeyField>, 
[src]

impl<A> From<A> for PartitionKeyFields where
    A: Into<PartitionKeyField>, 
[src]

impl Serialize for PartitionKeyFields[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,