diff options
author | vsrs <[email protected]> | 2020-06-10 19:24:36 +0100 |
---|---|---|
committer | vsrs <[email protected]> | 2020-06-18 08:15:43 +0100 |
commit | c50157f33025b6ff01809b975a3d12c0e43a0072 (patch) | |
tree | 2b40e6ee3cbb463000432c760311b8a2a1a3292c /crates/ra_hir_ty | |
parent | 4d6c6a6b1e00f61af96e16386c7f03f83f96a173 (diff) |
Add `Go to Type Definition` hover action.
Diffstat (limited to 'crates/ra_hir_ty')
-rw-r--r-- | crates/ra_hir_ty/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_hir_ty/src/lib.rs b/crates/ra_hir_ty/src/lib.rs index 2b9372b4b..9d4d6aaa4 100644 --- a/crates/ra_hir_ty/src/lib.rs +++ b/crates/ra_hir_ty/src/lib.rs | |||
@@ -1052,10 +1052,10 @@ pub enum OpaqueTyId { | |||
1052 | 1052 | ||
1053 | #[derive(Clone, PartialEq, Eq, Debug, Hash)] | 1053 | #[derive(Clone, PartialEq, Eq, Debug, Hash)] |
1054 | pub struct ReturnTypeImplTraits { | 1054 | pub struct ReturnTypeImplTraits { |
1055 | pub(crate) impl_traits: Vec<ReturnTypeImplTrait>, | 1055 | pub impl_traits: Vec<ReturnTypeImplTrait>, |
1056 | } | 1056 | } |
1057 | 1057 | ||
1058 | #[derive(Clone, PartialEq, Eq, Debug, Hash)] | 1058 | #[derive(Clone, PartialEq, Eq, Debug, Hash)] |
1059 | pub(crate) struct ReturnTypeImplTrait { | 1059 | pub struct ReturnTypeImplTrait { |
1060 | pub(crate) bounds: Binders<Vec<GenericPredicate>>, | 1060 | pub bounds: Binders<Vec<GenericPredicate>>, |
1061 | } | 1061 | } |