pub struct SigRef(/* private fields */);
Expand description
An opaque reference to a function Signature
.
SigRef
s are used to declare a function with
FunctionBuilder::import_function
as well as to make an indirect function call.
SigRef
s can be created with
FunctionBuilder::import_signature
.
You can retrieve the Signature
that was used to create a SigRef
with
FunctionBuilder::signature
or
func.dfg.signatures
.
While the order is stable, it is arbitrary.
Implementations§
Trait Implementations§
Source§impl Ord for SigRef
impl Ord for SigRef
Source§impl PartialOrd for SigRef
impl PartialOrd for SigRef
Source§impl ReservedValue for SigRef
impl ReservedValue for SigRef
Source§fn reserved_value() -> SigRef
fn reserved_value() -> SigRef
Create an instance of the reserved value.
Source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
impl Copy for SigRef
impl Eq for SigRef
impl StructuralPartialEq for SigRef
Auto Trait Implementations§
impl Freeze for SigRef
impl RefUnwindSafe for SigRef
impl Send for SigRef
impl Sync for SigRef
impl Unpin for SigRef
impl UnwindSafe for SigRef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.