pub struct DataWindowResponse {
pub dataset: String,
pub offset: usize,
pub limit: usize,
pub total_rows: usize,
pub query_token: String,
pub window_token: String,
pub rows: Vec<Row>,
pub compact_rows: Option<CompactRowsPayload>,
}Fields§
§dataset: String§offset: usize§limit: usize§total_rows: usize§query_token: String§window_token: String§rows: Vec<Row>§compact_rows: Option<CompactRowsPayload>Trait Implementations§
Source§impl Clone for DataWindowResponse
impl Clone for DataWindowResponse
Source§fn clone(&self) -> DataWindowResponse
fn clone(&self) -> DataWindowResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataWindowResponse
impl Debug for DataWindowResponse
Source§impl<'de> Deserialize<'de> for DataWindowResponse
impl<'de> Deserialize<'de> for DataWindowResponse
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 DataWindowResponse
impl PartialEq for DataWindowResponse
Source§fn eq(&self, other: &DataWindowResponse) -> bool
fn eq(&self, other: &DataWindowResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataWindowResponse
impl Serialize for DataWindowResponse
impl StructuralPartialEq for DataWindowResponse
Auto Trait Implementations§
impl Freeze for DataWindowResponse
impl RefUnwindSafe for DataWindowResponse
impl Send for DataWindowResponse
impl Sync for DataWindowResponse
impl Unpin for DataWindowResponse
impl UnsafeUnpin for DataWindowResponse
impl UnwindSafe for DataWindowResponse
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