pub struct GroupResult {
pub count: Option<i64>,
pub properties: Option<HashMap<String, Value>>,
}Expand description
Result containing the properties and count of a groupBy request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§count: Option<i64>Total count of resources for the given properties.
properties: Option<HashMap<String, Value>>Properties matching the groupBy fields in the request.
Trait Implementations§
Source§impl Clone for GroupResult
impl Clone for GroupResult
Source§fn clone(&self) -> GroupResult
fn clone(&self) -> GroupResult
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 Debug for GroupResult
impl Debug for GroupResult
Source§impl Default for GroupResult
impl Default for GroupResult
Source§fn default() -> GroupResult
fn default() -> GroupResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupResult
impl<'de> Deserialize<'de> for GroupResult
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 Serialize for GroupResult
impl Serialize for GroupResult
impl Part for GroupResult
Auto Trait Implementations§
impl Freeze for GroupResult
impl RefUnwindSafe for GroupResult
impl Send for GroupResult
impl Sync for GroupResult
impl Unpin for GroupResult
impl UnwindSafe for GroupResult
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