File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ and `Encodable`.
108
108
- ` MetadataEncodable ` and ` MetadataDecodable ` generate implementations that
109
109
only allow decoding by [ ` rustc_metadata::rmeta::encoder::EncodeContext ` ] and
110
110
[ ` rustc_metadata::rmeta::decoder::DecodeContext ` ] . These are used for types
111
- that contain ` rustc_metadata::rmeta::Lazy ` .
111
+ that contain ` rustc_metadata::rmeta::Lazy* ` .
112
112
- ` TyEncodable ` and ` TyDecodable ` generate implementation that apply to any
113
113
` TyEncoder ` or ` TyDecoder ` . These should be used for types that are only
114
114
serialized in crate metadata and/or the incremental cache, which is most
@@ -130,7 +130,7 @@ some deserialization needs to be deferred from the initial loading of metadata.
130
130
The [ ` LazyValue<T> ` ] type wraps the (relative) offset in the crate metadata where a
131
131
` T ` has been serialized. There are also some variants, [ ` LazyArray<T> ` ] and [ ` LazyTable<I, T> ` ] .
132
132
133
- The ` Lazy <[T]>` and ` LazyTable<I, T> ` types provide some functionality over
133
+ The ` LazyArray <[T]>` and ` LazyTable<I, T> ` types provide some functionality over
134
134
` Lazy<Vec<T>> ` and ` Lazy<HashMap<I, T>> ` :
135
135
136
136
- It's possible to encode a ` LazyArray<T> ` directly from an iterator, without
You can’t perform that action at this time.
0 commit comments