pub struct NativeAbiFunction {
pub name: String,
pub params: Vec<ValueId>,
pub environment_slots: usize,
pub blocks: Vec<NativeAbiBlock>,
}Fields§
§name: String§params: Vec<ValueId>§environment_slots: usize§blocks: Vec<NativeAbiBlock>Trait Implementations§
Source§impl Clone for NativeAbiFunction
impl Clone for NativeAbiFunction
Source§fn clone(&self) -> NativeAbiFunction
fn clone(&self) -> NativeAbiFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NativeAbiFunction
impl Debug for NativeAbiFunction
Source§impl PartialEq for NativeAbiFunction
impl PartialEq for NativeAbiFunction
Source§fn eq(&self, other: &NativeAbiFunction) -> bool
fn eq(&self, other: &NativeAbiFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NativeAbiFunction
impl StructuralPartialEq for NativeAbiFunction
Auto Trait Implementations§
impl Freeze for NativeAbiFunction
impl RefUnwindSafe for NativeAbiFunction
impl Send for NativeAbiFunction
impl Sync for NativeAbiFunction
impl Unpin for NativeAbiFunction
impl UnsafeUnpin for NativeAbiFunction
impl UnwindSafe for NativeAbiFunction
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> 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.