pub trait FunctionBodyLike<'a> {
type UnwindInfo: CompiledFunctionUnwindInfoLike<'a>;
// Required methods
fn body(&'a self) -> &'a [u8] ⓘ;
fn unwind_info(&'a self) -> Option<&'a Self::UnwindInfo>;
}Available on crate features
std or core only.Expand description
Any struct that acts like a FunctionBody.