pub struct AutomationsUpdatePatch {
pub name: Option<String>,
pub project: Option<AutomationProject>,
pub schedule: Option<AutomationSchedule>,
pub prompt: Option<String>,
pub enabled: Option<bool>,
pub model_provider: Option<String>,
pub model: Option<String>,
pub policy_mode: Option<PolicyMode>,
pub catch_up: Option<CatchUpPolicy>,
pub concurrency: Option<AutomationConcurrencyPolicy>,
}Fields§
§name: Option<String>§project: Option<AutomationProject>§schedule: Option<AutomationSchedule>§prompt: Option<String>§enabled: Option<bool>§model_provider: Option<String>§model: Option<String>§policy_mode: Option<PolicyMode>§catch_up: Option<CatchUpPolicy>§concurrency: Option<AutomationConcurrencyPolicy>Trait Implementations§
Source§impl Clone for AutomationsUpdatePatch
impl Clone for AutomationsUpdatePatch
Source§fn clone(&self) -> AutomationsUpdatePatch
fn clone(&self) -> AutomationsUpdatePatch
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 AutomationsUpdatePatch
impl Debug for AutomationsUpdatePatch
Source§impl Default for AutomationsUpdatePatch
impl Default for AutomationsUpdatePatch
Source§fn default() -> AutomationsUpdatePatch
fn default() -> AutomationsUpdatePatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomationsUpdatePatch
impl<'de> Deserialize<'de> for AutomationsUpdatePatch
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
Auto Trait Implementations§
impl Freeze for AutomationsUpdatePatch
impl RefUnwindSafe for AutomationsUpdatePatch
impl Send for AutomationsUpdatePatch
impl Sync for AutomationsUpdatePatch
impl Unpin for AutomationsUpdatePatch
impl UnsafeUnpin for AutomationsUpdatePatch
impl UnwindSafe for AutomationsUpdatePatch
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