diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-11-24 16:12:41 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-11-24 16:12:41 +0100 |
| commit | 761931405c68efe0a35d96524df797dda7155723 (patch) | |
| tree | 31ac2153dc0e5a5dc4fb4f46f839caed8066542a /src/layout/node.rs | |
| parent | f105663037c44740b5aa02dea72a9b368bc003e0 (diff) | |
Use newly stabilized intra doc links ↩
Diffstat (limited to 'src/layout/node.rs')
| -rw-r--r-- | src/layout/node.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/layout/node.rs b/src/layout/node.rs index 6b264eb0..35e742a5 100644 --- a/src/layout/node.rs +++ b/src/layout/node.rs @@ -50,7 +50,6 @@ impl Debug for LayoutNode { /// [`LayoutNode`] when directly putting the `Box` in there, see the /// [Rust Issue]. /// -/// [`LayoutNode`]: enum.LayoutNode.html /// [Rust Issue]: https://github.com/rust-lang/rust/issues/31740 pub struct Dynamic(pub Box<dyn DynNode>); @@ -102,8 +101,6 @@ impl PartialEq for Dynamic { /// DynNode>` able to implement `Clone` and `PartialEq`. However, these are /// automatically provided by a blanket impl as long as the type in question /// implements[`Layout`], `Debug`, `PartialEq`, `Clone` and is `'static`. -/// -/// [`Layout`]: ../trait.Layout.html pub trait DynNode: Debug + Layout + 'static { /// Convert into a `dyn Any` to enable downcasting. fn as_any(&self) -> &dyn Any; |
