pub struct UnloadedFunction {
pub signature: UnloadedSignature,
pub upvalues: Box<[UpvalueTarget]>,
pub fun_id: FunctionID,
}
Fields§
§signature: UnloadedSignature
§upvalues: Box<[UpvalueTarget]>
§fun_id: FunctionID
Trait Implementations§
Source§impl Clone for UnloadedFunction
impl Clone for UnloadedFunction
Source§fn clone(&self) -> UnloadedFunction
fn clone(&self) -> UnloadedFunction
Returns a duplicate of the value. Read more
1.0.0 · 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 UnloadedFunction
impl Debug for UnloadedFunction
Auto Trait Implementations§
impl Freeze for UnloadedFunction
impl RefUnwindSafe for UnloadedFunction
impl Send for UnloadedFunction
impl Sync for UnloadedFunction
impl Unpin for UnloadedFunction
impl UnwindSafe for UnloadedFunction
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