pub trait FunctionBuilder {
// Required method
unsafe fn new<S1: AsRef<str>, S2: Borrow<str>>(
name: &S1,
args: &[S2],
inner: Vec<Self>,
) -> Result<Function, AssemblerError>
where Self: Sized;
}
pub trait FunctionBuilder {
// Required method
unsafe fn new<S1: AsRef<str>, S2: Borrow<str>>(
name: &S1,
args: &[S2],
inner: Vec<Self>,
) -> Result<Function, AssemblerError>
where Self: Sized;
}