pub struct ConditionSetItemValueInput {
pub value: ConditionSetItemValueInputValue,
}Expand description
A single value to add to a condition set.
JSON schema
{
"title": "ConditionSetItemValueInput",
"description": "A single value to add to a condition set.",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
}
},
"x-stainless-model": "policies.condition_set_item_value_input"
}Fields§
§value: ConditionSetItemValueInputValueTrait Implementations§
Source§impl Clone for ConditionSetItemValueInput
impl Clone for ConditionSetItemValueInput
Source§fn clone(&self) -> ConditionSetItemValueInput
fn clone(&self) -> ConditionSetItemValueInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConditionSetItemValueInput
impl Debug for ConditionSetItemValueInput
Source§impl<'de> Deserialize<'de> for ConditionSetItemValueInput
impl<'de> Deserialize<'de> for ConditionSetItemValueInput
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<&ConditionSetItemValueInput> for ConditionSetItemValueInput
impl From<&ConditionSetItemValueInput> for ConditionSetItemValueInput
Source§fn from(value: &ConditionSetItemValueInput) -> Self
fn from(value: &ConditionSetItemValueInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConditionSetItemValueInput
impl RefUnwindSafe for ConditionSetItemValueInput
impl Send for ConditionSetItemValueInput
impl Sync for ConditionSetItemValueInput
impl Unpin for ConditionSetItemValueInput
impl UnsafeUnpin for ConditionSetItemValueInput
impl UnwindSafe for ConditionSetItemValueInput
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