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