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,
}
Expand description
59 TableEntriesDeltaRead Command
Fields§
§request_id: i64
§segment: String
§entries: TableEntries
§should_clear: bool
§reached_end: bool
§last_position: i64
Trait Implementations§
Source§impl Clone for TableEntriesDeltaReadCommand
impl Clone for TableEntriesDeltaReadCommand
Source§fn clone(&self) -> TableEntriesDeltaReadCommand
fn clone(&self) -> TableEntriesDeltaReadCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TableEntriesDeltaReadCommand
impl Debug for TableEntriesDeltaReadCommand
Source§impl<'de> Deserialize<'de> for TableEntriesDeltaReadCommand
impl<'de> Deserialize<'de> for TableEntriesDeltaReadCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TableEntriesDeltaReadCommand
impl PartialEq for TableEntriesDeltaReadCommand
Source§fn eq(&self, other: &TableEntriesDeltaReadCommand) -> bool
fn eq(&self, other: &TableEntriesDeltaReadCommand) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Reply for TableEntriesDeltaReadCommand
impl Reply for TableEntriesDeltaReadCommand
fn get_request_id(&self) -> i64
fn is_failure(&self) -> bool
impl StructuralPartialEq for TableEntriesDeltaReadCommand
Auto Trait Implementations§
impl Freeze for TableEntriesDeltaReadCommand
impl RefUnwindSafe for TableEntriesDeltaReadCommand
impl Send for TableEntriesDeltaReadCommand
impl Sync for TableEntriesDeltaReadCommand
impl Unpin for TableEntriesDeltaReadCommand
impl UnwindSafe for TableEntriesDeltaReadCommand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more