File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ assert_ne!(
154
154
- ` drop ` : an item-level option which implements [ ` Drop ` ] ( https://doc.rust-lang.org/core/ops/trait.Drop.html ) and uses
155
155
[ ` Zeroize ` ] to erase all data from memory.
156
156
- ` fqs ` : a field -level option which will use fully-qualified-syntax instead
157
- of calling the [ ` zeroize ` ] method on ` self ` directly. This is to avoid
158
- ambiguity between another method also called ` zeroize ` .
157
+ of calling the [ ` zeroize ` ] [ `method@zeroize` ] method on ` self ` directly.
158
+ This is to avoid ambiguity between another method also called ` zeroize ` .
159
159
160
160
``` rust
161
161
#[derive(DeriveWhere )]
@@ -262,5 +262,5 @@ conditions.
262
262
[ `Default` ] : https://doc.rust-lang.org/core/default/trait.Default.html
263
263
[ `Hash` ] : https://doc.rust-lang.org/core/hash/trait.Hash.html
264
264
[ `Zeroize` ] : https://docs.rs/zeroize/latest/zeroize/trait.Zeroize.html
265
- [ `zeroize` ] : https://docs.rs/zeroize/latest/zeroize/trait.Zeroize.html#tymethod.zeroize
265
+ [ `method@ zeroize` ] : https://docs.rs/zeroize/latest/zeroize/trait.Zeroize.html#tymethod.zeroize
266
266
[ #27 ] : https://github.com/ModProg/derive-where/issues/27
Original file line number Diff line number Diff line change 172
172
//! - `drop`: an item-level option which implements [`Drop`] and uses
173
173
//! [`Zeroize`] to erase all data from memory.
174
174
//! - `fqs`: a field -level option which will use fully-qualified-syntax instead
175
- //! of calling the [`zeroize`] method on `self` directly. This is to avoid
176
- //! ambiguity between another method also called `zeroize`.
175
+ //! of calling the [`zeroize`][`method@zeroize`] method on `self` directly.
176
+ //! This is to avoid ambiguity between another method also called `zeroize`.
177
177
//!
178
178
//! ```
179
179
//! # #[cfg(feature = "zeroize")]
291
291
//! license, shall be dual licensed as above, without any additional terms or
292
292
//! conditions.
293
293
//!
294
- //! [CHANGELOG]: https://github.com/ModProg/derive-where/blob/main/CHANGELOG
294
+ //! [CHANGELOG]: https://github.com/ModProg/derive-where/blob/main/CHANGELOG.md
295
295
//! [LICENSE-MIT]: https://github.com/ModProg/derive-where/blob/main/LICENSE-MIT
296
296
//! [LICENSE-APACHE]: https://github.com/ModProg/derive-where/blob/main/LICENSE-APACHE
297
297
//! [`Debug`]: core::fmt::Debug
298
298
//! [`Default`]: core::default::Default
299
299
//! [`Hash`]: core::hash::Hash
300
300
//! [`Zeroize`]: https://docs.rs/zeroize/latest/zeroize/trait.Zeroize.html
301
- //! [`zeroize`]: https://docs.rs/zeroize/latest/zeroize/trait.Zeroize.html#tymethod.zeroize
301
+ //! [`method@ zeroize`]: https://docs.rs/zeroize/latest/zeroize/trait.Zeroize.html#tymethod.zeroize
302
302
//! [#27]: https://github.com/ModProg/derive-where/issues/27
303
303
304
304
// MSRV: needed to support a lower MSRV.
You can’t perform that action at this time.
0 commit comments