pub struct UpdateWorkflowDto {
pub nodes: Option<Vec<WorkflowNodesInner>>,
pub name: Option<String>,
pub edges: Option<Vec<Edge>>,
}Fields§
§nodes: Option<Vec<WorkflowNodesInner>>§name: Option<String>§edges: Option<Vec<Edge>>Implementations§
Source§impl UpdateWorkflowDto
impl UpdateWorkflowDto
pub fn new() -> UpdateWorkflowDto
Trait Implementations§
Source§impl Clone for UpdateWorkflowDto
impl Clone for UpdateWorkflowDto
Source§fn clone(&self) -> UpdateWorkflowDto
fn clone(&self) -> UpdateWorkflowDto
Returns a copy 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 UpdateWorkflowDto
impl Debug for UpdateWorkflowDto
Source§impl Default for UpdateWorkflowDto
impl Default for UpdateWorkflowDto
Source§fn default() -> UpdateWorkflowDto
fn default() -> UpdateWorkflowDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateWorkflowDto
impl<'de> Deserialize<'de> for UpdateWorkflowDto
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 UpdateWorkflowDto
impl PartialEq for UpdateWorkflowDto
Source§impl Serialize for UpdateWorkflowDto
impl Serialize for UpdateWorkflowDto
impl StructuralPartialEq for UpdateWorkflowDto
Auto Trait Implementations§
impl Freeze for UpdateWorkflowDto
impl RefUnwindSafe for UpdateWorkflowDto
impl Send for UpdateWorkflowDto
impl Sync for UpdateWorkflowDto
impl Unpin for UpdateWorkflowDto
impl UnwindSafe for UpdateWorkflowDto
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