pub struct GetTableRowsResponse<T> {
pub rows: Vec<T>,
pub more: bool,
pub ram_payers: Option<Vec<Name>>,
pub next_key: Option<TableIndexType>,
}
Fields§
§rows: Vec<T>
§more: bool
§ram_payers: Option<Vec<Name>>
§next_key: Option<TableIndexType>
Auto Trait Implementations§
impl<T> Freeze for GetTableRowsResponse<T>
impl<T> RefUnwindSafe for GetTableRowsResponse<T>where
T: RefUnwindSafe,
impl<T> Send for GetTableRowsResponse<T>where
T: Send,
impl<T> Sync for GetTableRowsResponse<T>where
T: Sync,
impl<T> Unpin for GetTableRowsResponse<T>where
T: Unpin,
impl<T> UnwindSafe for GetTableRowsResponse<T>where
T: UnwindSafe,
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