pub struct UpdateFlowRequest {Show 13 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 deployment_message: Option<String>,
}
Fields§
§summary: String
§description: Option<String>
§value: Box<FlowValue>
§schema: Option<Value>
§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>
§deployment_message: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for UpdateFlowRequest
impl Clone for UpdateFlowRequest
Source§fn clone(&self) -> UpdateFlowRequest
fn clone(&self) -> UpdateFlowRequest
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 UpdateFlowRequest
impl Debug for UpdateFlowRequest
Source§impl Default for UpdateFlowRequest
impl Default for UpdateFlowRequest
Source§fn default() -> UpdateFlowRequest
fn default() -> UpdateFlowRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFlowRequest
impl<'de> Deserialize<'de> for UpdateFlowRequest
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 UpdateFlowRequest
impl PartialEq for UpdateFlowRequest
Source§impl Serialize for UpdateFlowRequest
impl Serialize for UpdateFlowRequest
impl StructuralPartialEq for UpdateFlowRequest
Auto Trait Implementations§
impl Freeze for UpdateFlowRequest
impl RefUnwindSafe for UpdateFlowRequest
impl Send for UpdateFlowRequest
impl Sync for UpdateFlowRequest
impl Unpin for UpdateFlowRequest
impl UnwindSafe for UpdateFlowRequest
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