[][src]Struct nakadi_types::subscription::EventTypeCursor

pub struct EventTypeCursor {
    pub cursor: Cursor,
    pub event_type: EventTypeName,
}

Cursor of a subscription without a CursorToken.

In the Nakadi API this type is named SubscriptionCursorWithoutToken. Since the original name is cumbersome it is renamed to EventTypeCursor There is an alias SubscriptionCursorWithoutToken for still using the original name.

See also Nakadi Manual

Fields

cursor: Cursorevent_type: EventTypeName

The name of the event type this partition’s events belong to.

Trait Implementations

impl Clone for EventTypeCursor[src]

impl Debug for EventTypeCursor[src]

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

impl Eq for EventTypeCursor[src]

impl EventTypePartitionLike for EventTypeCursor[src]

impl From<EventTypeCursor> for EventTypePartition[src]

impl From<SubscriptionCursor> for EventTypeCursor[src]

impl PartialEq<EventTypeCursor> for EventTypeCursor[src]

impl Serialize for EventTypeCursor[src]

impl StructuralEq for EventTypeCursor[src]

impl StructuralPartialEq for EventTypeCursor[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>,