pub struct UpdateConditionSetInput {
pub name: Option<UpdateConditionSetInputName>,
pub owner: Option<OwnerInput>,
pub owner_id: Option<OwnerIdInput>,
}Expand description
UpdateConditionSetInput
JSON schema
{
"type": "object",
"properties": {
"name": {
"description": "Name to assign to condition set.",
"type": "string",
"maxLength": 100,
"minLength": 1
},
"owner": {
"$ref": "#/components/schemas/OwnerInput"
},
"owner_id": {
"allOf": [
{
"$ref": "#/components/schemas/OwnerIdInput"
},
{}
]
}
}
}Fields§
§name: Option<UpdateConditionSetInputName>Name to assign to condition set.
owner: Option<OwnerInput>§owner_id: Option<OwnerIdInput>Trait Implementations§
Source§impl Clone for UpdateConditionSetInput
impl Clone for UpdateConditionSetInput
Source§fn clone(&self) -> UpdateConditionSetInput
fn clone(&self) -> UpdateConditionSetInput
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 UpdateConditionSetInput
impl Debug for UpdateConditionSetInput
Source§impl Default for UpdateConditionSetInput
impl Default for UpdateConditionSetInput
Source§impl<'de> Deserialize<'de> for UpdateConditionSetInput
impl<'de> Deserialize<'de> for UpdateConditionSetInput
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<&UpdateConditionSetInput> for UpdateConditionSetInput
impl From<&UpdateConditionSetInput> for UpdateConditionSetInput
Source§fn from(value: &UpdateConditionSetInput) -> Self
fn from(value: &UpdateConditionSetInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateConditionSetInput
impl RefUnwindSafe for UpdateConditionSetInput
impl Send for UpdateConditionSetInput
impl Sync for UpdateConditionSetInput
impl Unpin for UpdateConditionSetInput
impl UnwindSafe for UpdateConditionSetInput
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