pub trait FromArgs<'a>: Sized {
// Required method
fn from_args(args: &'a Args, index: usize) -> Result<Self, KclError>;
}
Expand description
Types which impl this trait can be read out of the Args
passed into a KCL function.
Required Methods§
Object Safety§
This trait is not object safe.