pub struct CreateAutomationOptions {
pub name: String,
pub status: AutomationStatus,
pub steps: Vec<Step>,
pub connections: Vec<Connection>,
}Fields§
§name: String§status: AutomationStatus§steps: Vec<Step>§connections: Vec<Connection>Trait Implementations§
Source§impl Clone for CreateAutomationOptions
impl Clone for CreateAutomationOptions
Source§fn clone(&self) -> CreateAutomationOptions
fn clone(&self) -> CreateAutomationOptions
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 CreateAutomationOptions
impl Debug for CreateAutomationOptions
Auto Trait Implementations§
impl Freeze for CreateAutomationOptions
impl RefUnwindSafe for CreateAutomationOptions
impl Send for CreateAutomationOptions
impl Sync for CreateAutomationOptions
impl Unpin for CreateAutomationOptions
impl UnsafeUnpin for CreateAutomationOptions
impl UnwindSafe for CreateAutomationOptions
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