We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167de6e commit 47b3d84Copy full SHA for 47b3d84
1 file changed
src/lib.rs
@@ -106,8 +106,8 @@ impl DrawingBackend for TextDrawingBackend {
106
&mut self,
107
mut upper_left: (i32, i32),
108
mut bottom_right: (i32, i32),
109
- style: &S,
110
- fill: bool,
+ _style: &S,
+ _fill: bool,
111
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
112
upper_left.0 = upper_left.0.max(0).min(self.size.0 as i32);
113
upper_left.1 = upper_left.1.max(0).min(self.size.1 as i32);
0 commit comments