Struct pravega_wire_protocol::commands::TableEntriesDeltaReadCommand[][src]

pub struct TableEntriesDeltaReadCommand {
    pub request_id: i64,
    pub segment: String,
    pub entries: TableEntries,
    pub should_clear: bool,
    pub reached_end: bool,
    pub last_position: i64,
}

59 TableEntriesDeltaRead Command

Fields

request_id: i64segment: Stringentries: TableEntriesshould_clear: boolreached_end: boollast_position: i64

Trait Implementations

impl Clone for TableEntriesDeltaReadCommand[src]

impl Command for TableEntriesDeltaReadCommand[src]

impl Debug for TableEntriesDeltaReadCommand[src]

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

impl PartialEq<TableEntriesDeltaReadCommand> for TableEntriesDeltaReadCommand[src]

impl Reply for TableEntriesDeltaReadCommand[src]

impl Serialize for TableEntriesDeltaReadCommand[src]

impl StructuralPartialEq for TableEntriesDeltaReadCommand[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.