pub struct FnSig {
pub params: Vec<(Symbol, LogosType)>,
pub return_type: LogosType,
}Expand description
Function signature for tracked functions.
Fields§
§params: Vec<(Symbol, LogosType)>§return_type: LogosTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for FnSig
impl RefUnwindSafe for FnSig
impl Send for FnSig
impl Sync for FnSig
impl Unpin for FnSig
impl UnsafeUnpin for FnSig
impl UnwindSafe for FnSig
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