pub struct ParamInfo {
pub name: Name,
pub pos: usize,
pub inductive_type: Option<Name>,
}Expand description
Information about a function parameter for termination checking.
Fields§
§name: NameParameter name
pos: usizeParameter position (0-indexed)
inductive_type: Option<Name>The inductive type this param belongs to (if any)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParamInfo
impl RefUnwindSafe for ParamInfo
impl Send for ParamInfo
impl Sync for ParamInfo
impl Unpin for ParamInfo
impl UnsafeUnpin for ParamInfo
impl UnwindSafe for ParamInfo
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