pub trait FromComponentOutputArgs {
// Required method
fn from_args(args: ComponentOutputArgs) -> Self;
}Expand description
Represents a type that can be created from ComponentOutputArgs.
Required Methods§
Sourcefn from_args(args: ComponentOutputArgs) -> Self
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.