Struct wasmtime_environ::ir::AbiParam [−][src]
pub struct AbiParam { pub value_type: Type, pub purpose: ArgumentPurpose, pub extension: ArgumentExtension, pub location: ArgumentLoc, pub legalized_to_pointer: bool, }
Expand description
Function parameter or return value descriptor.
This describes the value type being passed to or from a function along with flags that affect how the argument is passed.
Fields
value_type: Type
Type of the argument value.
purpose: ArgumentPurpose
Special purpose of argument, or Normal
.
extension: ArgumentExtension
Method for extending argument to a full register.
location: ArgumentLoc
ABI-specific location of this argument, or Unassigned
for arguments that have not yet
been legalized.
legalized_to_pointer: bool
Was the argument converted to pointer during legalization?
Implementations
Create a special-purpose parameter that is not (yet) bound to a specific register.
Create a parameter for a special-purpose register.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<AbiParam, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<AbiParam, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for AbiParam
impl UnwindSafe for AbiParam
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.