pub struct SubWorkflowDetail {
pub name: String,
pub description: String,
pub source_code: Option<String>,
}Expand description
Sub-workflow detail included in the workflow response.
Fields§
§name: StringSub-workflow name.
description: StringHuman-readable description.
source_code: Option<String>Optional Rust source code of the handler.
Trait Implementations§
Source§impl Debug for SubWorkflowDetail
impl Debug for SubWorkflowDetail
Auto Trait Implementations§
impl Freeze for SubWorkflowDetail
impl RefUnwindSafe for SubWorkflowDetail
impl Send for SubWorkflowDetail
impl Sync for SubWorkflowDetail
impl Unpin for SubWorkflowDetail
impl UnsafeUnpin for SubWorkflowDetail
impl UnwindSafe for SubWorkflowDetail
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