pub trait PointerTypeResult:
Op
+ OneResultInterface
+ ResultNOfType<0, PointerType> {
// Required method
fn result_pointee_type(&self, ctx: &Context) -> Ptr<TypeObj>;
}Expand description
An Op with a single result whose type is PointerType
Required Methods§
Sourcefn result_pointee_type(&self, ctx: &Context) -> Ptr<TypeObj>
fn result_pointee_type(&self, ctx: &Context) -> Ptr<TypeObj>
Get the pointee type of the result pointer.