Merge pull request #1142 from iced-rs/fix/unused-lints

Remove unused fields
This commit is contained in:
Héctor Ramón 2021-12-07 16:29:38 +07:00 committed by GitHub
commit 6f3a608717
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 12 deletions

View file

@ -15,7 +15,6 @@ enum Pokedex {
search: button::State,
},
Errored {
error: Error,
try_again: button::State,
},
}
@ -58,9 +57,8 @@ impl Application for Pokedex {
Command::none()
}
Message::PokemonFound(Err(error)) => {
Message::PokemonFound(Err(_error)) => {
*self = Pokedex::Errored {
error,
try_again: button::State::new(),
};
@ -155,7 +153,6 @@ impl Pokemon {
#[derive(Debug, Deserialize)]
struct Entry {
id: u32,
name: String,
flavor_text_entries: Vec<FlavorText>,
}

View file

@ -75,7 +75,6 @@ impl Application for SolarSystem {
struct State {
space_cache: canvas::Cache,
system_cache: canvas::Cache,
cursor_position: Point,
start: Instant,
now: Instant,
stars: Vec<(Point, f32)>,
@ -95,7 +94,6 @@ impl State {
State {
space_cache: Default::default(),
system_cache: Default::default(),
cursor_position: Point::ORIGIN,
start: now,
now,
stars: Self::generate_stars(width, height),

View file

@ -199,7 +199,6 @@ impl<'a, Message, Renderer: crate::Renderer> Scrollable<'a, Message, Renderer> {
Some(Scrollbar {
outer_bounds,
bounds: scrollbar_bounds,
margin: self.scrollbar_margin,
scroller: Scroller {
bounds: scroller_bounds,
},
@ -720,9 +719,6 @@ struct Scrollbar {
/// The bounds of the [`Scrollbar`].
bounds: Rectangle,
/// The margin within the [`Scrollbar`].
margin: u16,
/// The bounds of the [`Scroller`].
scroller: Scroller,
}

View file

@ -27,7 +27,6 @@ pub struct Backend {
image_pipeline: image::Pipeline,
default_text_size: u16,
primitive: Primitive,
}
impl Backend {
@ -60,7 +59,6 @@ impl Backend {
image_pipeline,
default_text_size: settings.default_text_size,
primitive: Primitive::None,
}
}