pub struct QueryInstancesResponse<TProperties> {
pub items: HashMap<String, Vec<NodeOrEdge<TProperties>>>,
pub next_cursor: Option<HashMap<String, String>>,
}Expand description
Response for querying instances.
Fields§
§items: HashMap<String, Vec<NodeOrEdge<TProperties>>>Retrieved instances, grouped by query.
next_cursor: Option<HashMap<String, String>>Set of cursors for pagination.
Trait Implementations§
Source§impl<TProperties: Clone> Clone for QueryInstancesResponse<TProperties>
impl<TProperties: Clone> Clone for QueryInstancesResponse<TProperties>
Source§fn clone(&self) -> QueryInstancesResponse<TProperties>
fn clone(&self) -> QueryInstancesResponse<TProperties>
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<TProperties: Debug> Debug for QueryInstancesResponse<TProperties>
impl<TProperties: Debug> Debug for QueryInstancesResponse<TProperties>
Source§impl<'de, TProperties> Deserialize<'de> for QueryInstancesResponse<TProperties>where
TProperties: Deserialize<'de>,
impl<'de, TProperties> Deserialize<'de> for QueryInstancesResponse<TProperties>where
TProperties: Deserialize<'de>,
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
Auto Trait Implementations§
impl<TProperties> Freeze for QueryInstancesResponse<TProperties>
impl<TProperties> RefUnwindSafe for QueryInstancesResponse<TProperties>where
TProperties: RefUnwindSafe,
impl<TProperties> Send for QueryInstancesResponse<TProperties>where
TProperties: Send,
impl<TProperties> Sync for QueryInstancesResponse<TProperties>where
TProperties: Sync,
impl<TProperties> Unpin for QueryInstancesResponse<TProperties>where
TProperties: Unpin,
impl<TProperties> UnwindSafe for QueryInstancesResponse<TProperties>where
TProperties: 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