pub struct ListDataExplorerKeysResponse {
pub keys: Option<Vec<Map<String, Value>>>,
pub cursor: Option<String>,
pub has_more: Option<bool>,
}Expand description
ListDataExplorerKeysResponse model.
Fields§
§keys: Option<Vec<Map<String, Value>>>§cursor: Option<String>Opaque cursor for the next page; null on the last page.
has_more: Option<bool>Trait Implementations§
Source§impl Clone for ListDataExplorerKeysResponse
impl Clone for ListDataExplorerKeysResponse
Source§fn clone(&self) -> ListDataExplorerKeysResponse
fn clone(&self) -> ListDataExplorerKeysResponse
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 ListDataExplorerKeysResponse
impl Debug for ListDataExplorerKeysResponse
Source§impl Default for ListDataExplorerKeysResponse
impl Default for ListDataExplorerKeysResponse
Source§fn default() -> ListDataExplorerKeysResponse
fn default() -> ListDataExplorerKeysResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDataExplorerKeysResponse
impl<'de> Deserialize<'de> for ListDataExplorerKeysResponse
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
impl StructuralPartialEq for ListDataExplorerKeysResponse
Auto Trait Implementations§
impl Freeze for ListDataExplorerKeysResponse
impl RefUnwindSafe for ListDataExplorerKeysResponse
impl Send for ListDataExplorerKeysResponse
impl Sync for ListDataExplorerKeysResponse
impl Unpin for ListDataExplorerKeysResponse
impl UnsafeUnpin for ListDataExplorerKeysResponse
impl UnwindSafe for ListDataExplorerKeysResponse
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