pub struct ConditionSetItemsResponse {
pub items: Vec<ConditionSetItem>,
pub next_cursor: Option<String>,
}Expand description
ConditionSetItemsResponse
JSON schema
{
"type": "object",
"required": [
"items",
"next_cursor"
],
"properties": {
"items": {
"description": "List of condition set items.",
"type": "array",
"items": {
"$ref": "#/components/schemas/ConditionSetItem"
}
},
"next_cursor": {
"description": "Cursor for pagination. Null if there are no more
items.",
"type": [
"string",
"null"
]
}
}
}Fields§
§items: Vec<ConditionSetItem>List of condition set items.
next_cursor: Option<String>Cursor for pagination. Null if there are no more items.
Trait Implementations§
Source§impl Clone for ConditionSetItemsResponse
impl Clone for ConditionSetItemsResponse
Source§fn clone(&self) -> ConditionSetItemsResponse
fn clone(&self) -> ConditionSetItemsResponse
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 ConditionSetItemsResponse
impl Debug for ConditionSetItemsResponse
Source§impl<'de> Deserialize<'de> for ConditionSetItemsResponse
impl<'de> Deserialize<'de> for ConditionSetItemsResponse
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 From<&ConditionSetItemsResponse> for ConditionSetItemsResponse
impl From<&ConditionSetItemsResponse> for ConditionSetItemsResponse
Source§fn from(value: &ConditionSetItemsResponse) -> Self
fn from(value: &ConditionSetItemsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConditionSetItemsResponse
impl RefUnwindSafe for ConditionSetItemsResponse
impl Send for ConditionSetItemsResponse
impl Sync for ConditionSetItemsResponse
impl Unpin for ConditionSetItemsResponse
impl UnwindSafe for ConditionSetItemsResponse
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