pub struct ExpandSpec {
pub id: String,
pub source: String,
pub max_children: Option<usize>,
pub template: Option<Box<WorkflowNode>>,
}Fields§
§id: String§source: String§max_children: Option<usize>§template: Option<Box<WorkflowNode>>Trait Implementations§
Source§impl Clone for ExpandSpec
impl Clone for ExpandSpec
Source§fn clone(&self) -> ExpandSpec
fn clone(&self) -> ExpandSpec
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 ExpandSpec
impl Debug for ExpandSpec
Source§impl<'de> Deserialize<'de> for ExpandSpec
impl<'de> Deserialize<'de> for ExpandSpec
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
impl Eq for ExpandSpec
Source§impl PartialEq for ExpandSpec
impl PartialEq for ExpandSpec
Source§impl Serialize for ExpandSpec
impl Serialize for ExpandSpec
impl StructuralPartialEq for ExpandSpec
Auto Trait Implementations§
impl Freeze for ExpandSpec
impl RefUnwindSafe for ExpandSpec
impl Send for ExpandSpec
impl Sync for ExpandSpec
impl Unpin for ExpandSpec
impl UnsafeUnpin for ExpandSpec
impl UnwindSafe for ExpandSpec
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