pub struct ConditionSetItemRequestParams {
pub condition_set_id: ConditionSetItemRequestParamsConditionSetId,
pub condition_set_item_id: ConditionSetItemRequestParamsConditionSetItemId,
}Expand description
Unique IDs of the condition set and the condition set item within the condition set to take actions on.
JSON schema
{
"description": "Unique IDs of the condition set and the condition set
item within the condition set to take actions on.",
"type": "object",
"required": [
"condition_set_id",
"condition_set_item_id"
],
"properties": {
"condition_set_id": {
"type": "string",
"maxLength": 24,
"minLength": 24
},
"condition_set_item_id": {
"type": "string",
"maxLength": 24,
"minLength": 24
}
}
}Fields§
§condition_set_id: ConditionSetItemRequestParamsConditionSetId§condition_set_item_id: ConditionSetItemRequestParamsConditionSetItemIdTrait Implementations§
Source§impl Clone for ConditionSetItemRequestParams
impl Clone for ConditionSetItemRequestParams
Source§fn clone(&self) -> ConditionSetItemRequestParams
fn clone(&self) -> ConditionSetItemRequestParams
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<'de> Deserialize<'de> for ConditionSetItemRequestParams
impl<'de> Deserialize<'de> for ConditionSetItemRequestParams
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<&ConditionSetItemRequestParams> for ConditionSetItemRequestParams
impl From<&ConditionSetItemRequestParams> for ConditionSetItemRequestParams
Source§fn from(value: &ConditionSetItemRequestParams) -> Self
fn from(value: &ConditionSetItemRequestParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConditionSetItemRequestParams
impl RefUnwindSafe for ConditionSetItemRequestParams
impl Send for ConditionSetItemRequestParams
impl Sync for ConditionSetItemRequestParams
impl Unpin for ConditionSetItemRequestParams
impl UnsafeUnpin for ConditionSetItemRequestParams
impl UnwindSafe for ConditionSetItemRequestParams
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