pub struct BootstrapWorkflowRunInput<'a> {
pub run_id: &'a str,
pub workflow_json: &'a str,
pub expected_workflow_id: Option<&'a str>,
pub params: &'a BTreeMap<String, Value>,
pub initiator: &'a str,
pub chat_binding: Option<RunChatBinding>,
}Fields§
§run_id: &'a str§workflow_json: &'a str§expected_workflow_id: Option<&'a str>§params: &'a BTreeMap<String, Value>§initiator: &'a str§chat_binding: Option<RunChatBinding>Trait Implementations§
Source§impl<'a> Clone for BootstrapWorkflowRunInput<'a>
impl<'a> Clone for BootstrapWorkflowRunInput<'a>
Source§fn clone(&self) -> BootstrapWorkflowRunInput<'a>
fn clone(&self) -> BootstrapWorkflowRunInput<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for BootstrapWorkflowRunInput<'a>
impl<'a> RefUnwindSafe for BootstrapWorkflowRunInput<'a>
impl<'a> Send for BootstrapWorkflowRunInput<'a>
impl<'a> Sync for BootstrapWorkflowRunInput<'a>
impl<'a> Unpin for BootstrapWorkflowRunInput<'a>
impl<'a> UnsafeUnpin for BootstrapWorkflowRunInput<'a>
impl<'a> UnwindSafe for BootstrapWorkflowRunInput<'a>
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