pub struct Ty {
pub k: RTk,
pub name: RefCell<Option<String>>,
pub tail: RefCell<Option<Tail>>,
}Expand description
a resolved type: its kind, its name when named, its else tail
Fields§
§k: RTkthe kind
name: RefCell<Option<String>>the name, for a named type
tail: RefCell<Option<Tail>>the else tail
Auto Trait Implementations§
impl !Freeze for Ty
impl !RefUnwindSafe for Ty
impl !Send for Ty
impl !Sync for Ty
impl !UnwindSafe for Ty
impl Unpin for Ty
impl UnsafeUnpin for Ty
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