pub struct Rec<'a> {
pub span: Span,
pub types: Vec<Type<'a>>,
}
Expand description
A recursion group declaration in a module
Fields§
§span: Span
Where this recursion group was defined.
types: Vec<Type<'a>>
The types that we’re defining in this group.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Rec<'a>
impl<'a> RefUnwindSafe for Rec<'a>
impl<'a> Send for Rec<'a>
impl<'a> Sync for Rec<'a>
impl<'a> Unpin for Rec<'a>
impl<'a> UnwindSafe for Rec<'a>
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