pub struct Function<'a> { /* private fields */ }
Expand description
Represents a function. Local or Imported depends on the FuncKind
.
Implementations§
Source§impl<'a> Function<'a>
impl<'a> Function<'a>
Sourcepub fn get_type_id(&self) -> TypeID
pub fn get_type_id(&self) -> TypeID
Get the TypeID of the function
Sourcepub fn unwrap_local(&self) -> &LocalFunction<'a>
pub fn unwrap_local(&self) -> &LocalFunction<'a>
Unwrap a local function. If it is an imported function, it panics.
Sourcepub fn unwrap_local_mut(&mut self) -> &mut LocalFunction<'a>
pub fn unwrap_local_mut(&mut self) -> &mut LocalFunction<'a>
Unwrap a local function as mutable. If it is an imported function, it panics.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Function<'a>
impl<'a> RefUnwindSafe for Function<'a>
impl<'a> Send for Function<'a>
impl<'a> Sync for Function<'a>
impl<'a> Unpin for Function<'a>
impl<'a> UnwindSafe for Function<'a>
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