pub struct NativeClosureFunction {
pub name: String,
pub params: Vec<ValueId>,
pub environment: NativeClosureEnvironment,
pub abi: NativeClosureAbi,
pub blocks: Vec<NativeClosureBlock>,
}Fields§
§name: String§params: Vec<ValueId>§environment: NativeClosureEnvironment§abi: NativeClosureAbi§blocks: Vec<NativeClosureBlock>Trait Implementations§
Source§impl Clone for NativeClosureFunction
impl Clone for NativeClosureFunction
Source§fn clone(&self) -> NativeClosureFunction
fn clone(&self) -> NativeClosureFunction
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 NativeClosureFunction
impl Debug for NativeClosureFunction
Source§impl PartialEq for NativeClosureFunction
impl PartialEq for NativeClosureFunction
Source§fn eq(&self, other: &NativeClosureFunction) -> bool
fn eq(&self, other: &NativeClosureFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NativeClosureFunction
impl StructuralPartialEq for NativeClosureFunction
Auto Trait Implementations§
impl Freeze for NativeClosureFunction
impl RefUnwindSafe for NativeClosureFunction
impl Send for NativeClosureFunction
impl Sync for NativeClosureFunction
impl Unpin for NativeClosureFunction
impl UnsafeUnpin for NativeClosureFunction
impl UnwindSafe for NativeClosureFunction
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.