Struct cranelift_codegen::ir::ExtFuncData [−][src]
pub struct ExtFuncData {
pub name: ExternalName,
pub signature: SigRef,
pub colocated: bool,
}An external function.
Information about a function that can be called directly with a direct call instruction.
Fields
name: ExternalName
Name of the external function.
signature: SigRef
Call signature of function.
colocated: bool
Will this function be defined nearby, such that it will always be a certain distance away, after linking? If so, references to it can avoid going through a GOT or PLT. Note that symbols meant to be preemptible cannot be considered colocated.
Trait Implementations
impl Clone for ExtFuncData[src]
impl Clone for ExtFuncDatafn clone(&self) -> ExtFuncData[src]
fn clone(&self) -> ExtFuncDataReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for ExtFuncData[src]
impl Debug for ExtFuncDatafn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for ExtFuncData[src]
impl Display for ExtFuncDataAuto Trait Implementations
impl Send for ExtFuncData
impl Send for ExtFuncDataimpl Sync for ExtFuncData
impl Sync for ExtFuncData