pub struct CreateFlowRequest {Show 14 fields
pub summary: String,
pub description: Option<String>,
pub value: Box<FlowValue>,
pub schema: Option<Value>,
pub path: String,
pub tag: Option<String>,
pub ws_error_handler_muted: Option<bool>,
pub priority: Option<i32>,
pub dedicated_worker: Option<bool>,
pub timeout: Option<f64>,
pub visible_to_runner_only: Option<bool>,
pub on_behalf_of_email: Option<String>,
pub draft_only: Option<bool>,
pub deployment_message: Option<String>,
}Fields§
§summary: StringShort description of what this flow does
description: Option<String>Detailed documentation for this flow
value: Box<FlowValue>§schema: Option<Value>JSON Schema for flow inputs. Use this to define input parameters, their types, defaults, and validation. For resource inputs, set type to ‘object’ and format to ‘resource-
path: String§tag: Option<String>§ws_error_handler_muted: Option<bool>§priority: Option<i32>§dedicated_worker: Option<bool>§timeout: Option<f64>§visible_to_runner_only: Option<bool>§on_behalf_of_email: Option<String>§draft_only: Option<bool>§deployment_message: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for CreateFlowRequest
impl Clone for CreateFlowRequest
Source§fn clone(&self) -> CreateFlowRequest
fn clone(&self) -> CreateFlowRequest
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 CreateFlowRequest
impl Debug for CreateFlowRequest
Source§impl Default for CreateFlowRequest
impl Default for CreateFlowRequest
Source§fn default() -> CreateFlowRequest
fn default() -> CreateFlowRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFlowRequest
impl<'de> Deserialize<'de> for CreateFlowRequest
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 PartialEq for CreateFlowRequest
impl PartialEq for CreateFlowRequest
Source§impl Serialize for CreateFlowRequest
impl Serialize for CreateFlowRequest
impl StructuralPartialEq for CreateFlowRequest
Auto Trait Implementations§
impl Freeze for CreateFlowRequest
impl RefUnwindSafe for CreateFlowRequest
impl Send for CreateFlowRequest
impl Sync for CreateFlowRequest
impl Unpin for CreateFlowRequest
impl UnwindSafe for CreateFlowRequest
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