enum FnCtxt<'a> {
TraitImpl {
self_ty: &'a Type,
trait_: &'a Path,
},
InherentImpl {
self_ty: &'a Type,
},
Trait {
trait_: &'a Path,
},
Free,
}
Variants§
Auto Trait Implementations§
impl<'a> Freeze for FnCtxt<'a>
impl<'a> RefUnwindSafe for FnCtxt<'a>
impl<'a> !Send for FnCtxt<'a>
impl<'a> !Sync for FnCtxt<'a>
impl<'a> Unpin for FnCtxt<'a>
impl<'a> UnwindSafe for FnCtxt<'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