pub struct Compiled {
pub block: Vec<MutualInductive>,
pub isos: Vec<(String, Term, Term)>,
pub iso_names: Vec<IsoNames>,
pub siblings: Vec<String>,
}Expand description
The compiled artifacts of a nested inductive: the mutual block to register, and the
iso DEFINITIONS (name, type, body) to kernel-check and add. Nothing here is trusted
until the caller checks it.
Fields§
§block: Vec<MutualInductive>§isos: Vec<(String, Term, Term)>§iso_names: Vec<IsoNames>§siblings: Vec<String>Auto Trait Implementations§
impl Freeze for Compiled
impl RefUnwindSafe for Compiled
impl Send for Compiled
impl Sync for Compiled
impl Unpin for Compiled
impl UnsafeUnpin for Compiled
impl UnwindSafe for Compiled
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