pub struct MigrateWorkflowRequest {
pub session_id: String,
pub description: Option<String>,
}Expand description
Request body for explicitly cloning a read-only legacy workflow into the current session workspace’s canonical Skill directory.
Fields§
§session_id: StringTrusted session used to resolve the Project/workspace publication scope.
description: Option<String>Optional replacement for the legacy workflow description. Supplying one enables automatic invocation; otherwise description-less sources remain manual-only after migration.
Trait Implementations§
Source§impl Debug for MigrateWorkflowRequest
impl Debug for MigrateWorkflowRequest
Source§impl Default for MigrateWorkflowRequest
impl Default for MigrateWorkflowRequest
Source§fn default() -> MigrateWorkflowRequest
fn default() -> MigrateWorkflowRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MigrateWorkflowRequest
impl<'de> Deserialize<'de> for MigrateWorkflowRequest
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
Auto Trait Implementations§
impl Freeze for MigrateWorkflowRequest
impl RefUnwindSafe for MigrateWorkflowRequest
impl Send for MigrateWorkflowRequest
impl Sync for MigrateWorkflowRequest
impl Unpin for MigrateWorkflowRequest
impl UnsafeUnpin for MigrateWorkflowRequest
impl UnwindSafe for MigrateWorkflowRequest
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