pub struct TableEntriesReadCommand {
pub request_id: i64,
pub segment: String,
pub entries: TableEntries,
pub continuation_token: Vec<u8>,
}
Expand description
- TableEntriesRead Command
Fields§
§request_id: i64
§segment: String
§entries: TableEntries
§continuation_token: Vec<u8>
Trait Implementations§
Source§impl Clone for TableEntriesReadCommand
impl Clone for TableEntriesReadCommand
Source§fn clone(&self) -> TableEntriesReadCommand
fn clone(&self) -> TableEntriesReadCommand
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 Command for TableEntriesReadCommand
impl Command for TableEntriesReadCommand
Source§impl Debug for TableEntriesReadCommand
impl Debug for TableEntriesReadCommand
Source§impl<'de> Deserialize<'de> for TableEntriesReadCommand
impl<'de> Deserialize<'de> for TableEntriesReadCommand
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 TableEntriesReadCommand
impl PartialEq for TableEntriesReadCommand
Source§impl Reply for TableEntriesReadCommand
impl Reply for TableEntriesReadCommand
fn get_request_id(&self) -> i64
fn is_failure(&self) -> bool
Source§impl Serialize for TableEntriesReadCommand
impl Serialize for TableEntriesReadCommand
impl StructuralPartialEq for TableEntriesReadCommand
Auto Trait Implementations§
impl Freeze for TableEntriesReadCommand
impl RefUnwindSafe for TableEntriesReadCommand
impl Send for TableEntriesReadCommand
impl Sync for TableEntriesReadCommand
impl Unpin for TableEntriesReadCommand
impl UnwindSafe for TableEntriesReadCommand
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