Skip to main content

parley/style/
brush.rs

1// Copyright 2021 the Parley Authors
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4/// Trait for types that represent the color of glyphs or decorations.
5pub trait Brush: Clone + PartialEq + Default + core::fmt::Debug {}
6
7impl<T: Clone + PartialEq + Default + core::fmt::Debug> Brush for T {}