pub struct EntryMeta {
pub hiddens: usize,
pub erased: usize,
pub arguments: Telescope<Argument>,
pub is_ctr: bool,
pub range: Range,
pub is_record_cons_of: Option<QualifiedIdent>,
}
Expand description
Metadata about entries, it’s really useful when we are trying to desugar something that does not contains a lot of information like a record definition or a sum type definition.
Fields§
§erased: usize
§arguments: Telescope<Argument>
§is_ctr: bool
§range: Range
§is_record_cons_of: Option<QualifiedIdent>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntryMeta
impl RefUnwindSafe for EntryMeta
impl Send for EntryMeta
impl Sync for EntryMeta
impl Unpin for EntryMeta
impl UnwindSafe for EntryMeta
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