pub trait UserDefinedFunctionBodySupport<'a> {
type O;
// Required method
fn with_body(self, body: &'a str) -> Self::O;
}
pub trait UserDefinedFunctionBodySupport<'a> {
type O;
// Required method
fn with_body(self, body: &'a str) -> Self::O;
}