pub struct FlowUpdate {
pub data: Option<Option<Value>>,
pub description: Option<String>,
pub locked: Option<bool>,
pub name: Option<String>,
pub workflow: Option<String>,
}Fields§
§data: Option<Option<Value>>§description: Option<String>Description replaces the description when present.
locked: Option<bool>Locked freezes or unfreezes the workflow against edits when present.
name: Option<String>Name renames the workflow when present.
workflow: Option<String>Workflow is the workflow’s UUID, taken from the path.
Implementations§
Source§impl FlowUpdate
impl FlowUpdate
pub fn new() -> FlowUpdate
Trait Implementations§
Source§impl Clone for FlowUpdate
impl Clone for FlowUpdate
Source§fn clone(&self) -> FlowUpdate
fn clone(&self) -> FlowUpdate
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 FlowUpdate
impl Debug for FlowUpdate
Source§impl Default for FlowUpdate
impl Default for FlowUpdate
Source§fn default() -> FlowUpdate
fn default() -> FlowUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowUpdate
impl<'de> Deserialize<'de> for FlowUpdate
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 FlowUpdate
impl PartialEq for FlowUpdate
Source§impl Serialize for FlowUpdate
impl Serialize for FlowUpdate
impl StructuralPartialEq for FlowUpdate
Auto Trait Implementations§
impl Freeze for FlowUpdate
impl RefUnwindSafe for FlowUpdate
impl Send for FlowUpdate
impl Sync for FlowUpdate
impl Unpin for FlowUpdate
impl UnsafeUnpin for FlowUpdate
impl UnwindSafe for FlowUpdate
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