pub struct StdEntry {
pub name: &'static str,
pub module: &'static str,
pub description: &'static str,
pub is_theorem: bool,
}Expand description
A record of a single OxiLean standard library theorem or definition that the elaborator knows about.
Fields§
§name: &'static strQualified name (e.g., Nat.add_comm).
module: &'static strWhich module this entry belongs to.
description: &'static strHuman-readable description.
is_theorem: boolWhether this is a theorem (vs. a definition).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StdEntry
impl RefUnwindSafe for StdEntry
impl Send for StdEntry
impl Sync for StdEntry
impl Unpin for StdEntry
impl UnsafeUnpin for StdEntry
impl UnwindSafe for StdEntry
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