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§fn default() -> UpdateConditionSetInput
fn default() -> UpdateConditionSetInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateConditionSetInput
impl<'de> Deserialize<'de> for UpdateConditionSetInput
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateConditionSetInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateConditionSetInput, <__D as Deserializer<'de>>::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) -> UpdateConditionSetInput
fn from(value: &UpdateConditionSetInput) -> UpdateConditionSetInput
Converts to this type from the input type.
Source§impl Serialize for UpdateConditionSetInput
impl Serialize for UpdateConditionSetInput
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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