pub struct QueryObjectsOutput {
pub has_more_results: Option<bool>,
pub ids: Option<Vec<String>>,
pub marker: Option<String>,
}
Expand description
Contains the output of QueryObjects.
Fields§
§has_more_results: Option<bool>
Indicates whether there are more results that can be obtained by a subsequent call.
ids: Option<Vec<String>>
The identifiers that match the query selectors.
marker: Option<String>
The starting point for the next page of results. To view the next page of results, call QueryObjects
again with this marker value. If the value is null, there are no more results.
Trait Implementations§
Source§impl Clone for QueryObjectsOutput
impl Clone for QueryObjectsOutput
Source§fn clone(&self) -> QueryObjectsOutput
fn clone(&self) -> QueryObjectsOutput
Returns a copy 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 Debug for QueryObjectsOutput
impl Debug for QueryObjectsOutput
Source§impl Default for QueryObjectsOutput
impl Default for QueryObjectsOutput
Source§fn default() -> QueryObjectsOutput
fn default() -> QueryObjectsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryObjectsOutput
impl<'de> Deserialize<'de> for QueryObjectsOutput
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 QueryObjectsOutput
impl PartialEq for QueryObjectsOutput
impl StructuralPartialEq for QueryObjectsOutput
Auto Trait Implementations§
impl Freeze for QueryObjectsOutput
impl RefUnwindSafe for QueryObjectsOutput
impl Send for QueryObjectsOutput
impl Sync for QueryObjectsOutput
impl Unpin for QueryObjectsOutput
impl UnwindSafe for QueryObjectsOutput
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