pub struct ServerlessWorkflowParser;
Expand description
Serverless Workflow Parser
Implementations§
Source§impl ServerlessWorkflowParser
impl ServerlessWorkflowParser
Sourcepub fn parse_json(
&self,
json: JsonValue,
) -> StdResult<ServerlessWorkflow, WorkflowError>
pub fn parse_json( &self, json: JsonValue, ) -> StdResult<ServerlessWorkflow, WorkflowError>
JSONからServerlessWorkflowをパース
Sourcepub fn parse_yaml(
&self,
yaml_content: &str,
) -> StdResult<ServerlessWorkflow, WorkflowError>
pub fn parse_yaml( &self, yaml_content: &str, ) -> StdResult<ServerlessWorkflow, WorkflowError>
YAML文字列からServerlessWorkflowをパース
Sourcepub fn convert_to_workflow_ir(
&self,
sw: ServerlessWorkflow,
) -> StdResult<WorkflowIR, WorkflowError>
pub fn convert_to_workflow_ir( &self, sw: ServerlessWorkflow, ) -> StdResult<WorkflowIR, WorkflowError>
ServerlessWorkflowをWorkflowIRに変換
Auto Trait Implementations§
impl Freeze for ServerlessWorkflowParser
impl RefUnwindSafe for ServerlessWorkflowParser
impl Send for ServerlessWorkflowParser
impl Sync for ServerlessWorkflowParser
impl Unpin for ServerlessWorkflowParser
impl UnwindSafe for ServerlessWorkflowParser
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