diff options
Diffstat (limited to 'components/pixels/lib.rs')
-rw-r--r-- | components/pixels/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/pixels/lib.rs b/components/pixels/lib.rs index 46a567d78e9..d9a7fcc39d0 100644 --- a/components/pixels/lib.rs +++ b/components/pixels/lib.rs @@ -2,10 +2,11 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use std::borrow::Cow; + use euclid::default::{Point2D, Rect, Size2D}; use malloc_size_of_derive::MallocSizeOf; use serde::{Deserialize, Serialize}; -use std::borrow::Cow; #[derive(Clone, Copy, Debug, Deserialize, Eq, MallocSizeOf, PartialEq, Serialize)] pub enum PixelFormat { |