pub enum ArgSlot {
Concrete(DataType),
Poly(PseudoType),
}Expand description
A single position in a function argument list — either a concrete type or a pseudo-type waiting for substitution.
Variants§
Concrete(DataType)
Poly(PseudoType)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArgSlot
impl RefUnwindSafe for ArgSlot
impl Send for ArgSlot
impl Sync for ArgSlot
impl Unpin for ArgSlot
impl UnsafeUnpin for ArgSlot
impl UnwindSafe for ArgSlot
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