pub struct FuncType<'s> {
pub start: usize,
pub params: Vec<Param<'s>>,
pub results: Vec<FuncResult>,
}
Fields§
§start: usize
§params: Vec<Param<'s>>
§results: Vec<FuncResult>
Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for FuncType<'s>
impl<'s> RefUnwindSafe for FuncType<'s>
impl<'s> Send for FuncType<'s>
impl<'s> Sync for FuncType<'s>
impl<'s> Unpin for FuncType<'s>
impl<'s> UnwindSafe for FuncType<'s>
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