pub struct TermList {
pub start: u32,
pub len: u32,
}Expand description
Fixed-capacity term list for #![no_std]. Indices into a TermArena.
Fields§
§start: u32Start index in the arena.
len: u32Number of terms in this list.
Trait Implementations§
impl Copy for TermList
impl Eq for TermList
impl StructuralPartialEq for TermList
Auto Trait Implementations§
impl Freeze for TermList
impl RefUnwindSafe for TermList
impl Send for TermList
impl Sync for TermList
impl Unpin for TermList
impl UnsafeUnpin for TermList
impl UnwindSafe for TermList
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