Skip to main content

FromComponentOutputArgs

Trait FromComponentOutputArgs 

Source
pub trait FromComponentOutputArgs {
    // Required method
    fn from_args(args: ComponentOutputArgs) -> Self;
}
Expand description

Represents a type that can be created from ComponentOutputArgs.

Required Methods§

Source

fn from_args(args: ComponentOutputArgs) -> Self

Create the type using ComponentOutputArgs.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§