pub struct TabularQueryResult {
pub columns: Vec<String>,
pub rows: Vec<BTreeMap<String, String>>,
pub truncated: Option<bool>,
}Fields§
§columns: Vec<String>§rows: Vec<BTreeMap<String, String>>§truncated: Option<bool>Trait Implementations§
Source§impl Debug for TabularQueryResult
impl Debug for TabularQueryResult
Auto Trait Implementations§
impl Freeze for TabularQueryResult
impl RefUnwindSafe for TabularQueryResult
impl Send for TabularQueryResult
impl Sync for TabularQueryResult
impl Unpin for TabularQueryResult
impl UnsafeUnpin for TabularQueryResult
impl UnwindSafe for TabularQueryResult
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