pub enum TypeValue {
Primitive(Ident, Pos),
Enum(Vec<Variant>, Pos),
}
Expand description
The actual type-value: a primitive or an enum with variants.
TODO: add structs as well?
Variants§
Trait Implementations§
impl Eq for TypeValue
impl StructuralPartialEq for TypeValue
Auto Trait Implementations§
impl Freeze for TypeValue
impl RefUnwindSafe for TypeValue
impl Send for TypeValue
impl Sync for TypeValue
impl Unpin for TypeValue
impl UnwindSafe for TypeValue
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