pub enum TypeExprResult {
Ok(Type),
Err(Span),
}Expand description
Result of parsing a type expression: either a type or an error span.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeExprResult
impl RefUnwindSafe for TypeExprResult
impl Send for TypeExprResult
impl Sync for TypeExprResult
impl Unpin for TypeExprResult
impl UnsafeUnpin for TypeExprResult
impl UnwindSafe for TypeExprResult
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