cargo fmt

This commit is contained in:
Piotr Osiewicz 2024-01-02 13:15:57 +01:00
parent 4af6ac25e9
commit 388c2d8e7f
4 changed files with 3 additions and 13 deletions

View File

@ -193,11 +193,7 @@ impl<C: RenderOnce> Element for Component<C> {
((), element_state)
});
} else {
element.paint(
bounds,
state.rendered_element_state.as_mut().unwrap(),
cx,
);
element.paint(bounds, state.rendered_element_state.as_mut().unwrap(), cx);
}
}
}

View File

@ -27,8 +27,6 @@ pub(crate) struct SceneBuilder {
surfaces: Vec<Surface>,
}
impl SceneBuilder {
pub fn build(&mut self) -> Scene {
let mut orders = vec![0; self.layers_by_order.len()];

View File

@ -29,8 +29,7 @@ pub struct TaffyLayoutEngine {
>,
}
static EXPECT_MESSAGE: &str =
"we should avoid taffy layout errors by construction if possible";
static EXPECT_MESSAGE: &str = "we should avoid taffy layout errors by construction if possible";
impl TaffyLayoutEngine {
pub fn new() -> Self {

View File

@ -438,8 +438,7 @@ impl FontWeight {
}
/// Allows italic or oblique faces to be selected.
#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash)]
#[derive(Default)]
#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash, Default)]
pub enum FontStyle {
/// A face that is neither italic not obliqued.
#[default]
@ -450,8 +449,6 @@ pub enum FontStyle {
Oblique,
}
impl Display for FontStyle {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
Debug::fmt(self, f)