diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-25 08:33:06 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-25 08:40:30 +0100 |
commit | 21583e526c8045c60026b1fe8ec9510734d1764d (patch) | |
tree | 53763ef8ff9bbc6f1288efb9c7a3ecb58afd15cc /src/parse_assoc_type.rs | |
parent | 73b1ca899858b7079bec54a6e4f29941cbb8d0bd (diff) |
rename parse_trait_sig module to trait_sig
Diffstat (limited to 'src/parse_assoc_type.rs')
-rw-r--r-- | src/parse_assoc_type.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse_assoc_type.rs b/src/parse_assoc_type.rs index a02e06c..adde237 100644 --- a/src/parse_assoc_type.rs +++ b/src/parse_assoc_type.rs @@ -4,8 +4,8 @@ use syn::spanned::Spanned; use syn::{GenericArgument, Ident, PathArguments, PathSegment, TraitItemType, Type}; use crate::match_assoc_type; -use crate::parse_trait_sig::TypeTransform; use crate::syn_utils::{iter_type, lifetime_bounds, trait_bounds}; +use crate::trait_sig::TypeTransform; #[derive(Debug)] pub enum AssocTypeError { |