Add FilterType type

This commit is contained in:
5ohue
2024-05-09 21:48:39 +03:00
parent cfbdbd4c0e
commit 4b32edb17e
5 changed files with 54 additions and 6 deletions

View File

@ -1,11 +1,13 @@
mod colorspace_type;
mod composite_operator;
mod dither_method;
mod filter_type;
mod metric_type;
mod resource_type;
pub use self::colorspace_type::ColorspaceType;
pub use self::composite_operator::CompositeOperator;
pub use self::dither_method::DitherMethod;
pub use self::filter_type::FilterType;
pub use self::metric_type::MetricType;
pub use self::resource_type::ResourceType;