Fix broken links in documentation

This commit is contained in:
Héctor Ramón Jiménez 2024-03-22 01:53:48 +01:00
parent 53a183fe0d
commit 85800c99ab
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
9 changed files with 73 additions and 54 deletions

View file

@ -398,6 +398,7 @@ mod geometry {
use super::Renderer;
use crate::core::{Point, Radians, Size, Vector};
use crate::graphics::geometry::{self, Fill, Path, Stroke, Text};
use crate::graphics::Cached;
impl<L, R> geometry::Renderer for Renderer<L, R>
where
@ -432,10 +433,10 @@ mod geometry {
Right(R),
}
impl<L, R> geometry::Geometry for Geometry<L, R>
impl<L, R> Cached for Geometry<L, R>
where
L: geometry::Geometry,
R: geometry::Geometry,
L: Cached,
R: Cached,
{
type Cache = Geometry<L::Cache, R::Cache>;