Add types module

Move `CompositeOperator` and `ResourceType` to the `types` module
This commit is contained in:
5ohue
2024-05-09 21:00:07 +03:00
parent b359d72087
commit 53fb3069ed
7 changed files with 156 additions and 287 deletions

View File

@ -41,10 +41,12 @@ pub use conversions::ToMagick;
pub use result::MagickError;
use result::Result;
pub use wand::*;
pub use types::*;
mod conversions;
mod result;
mod wand;
mod types;
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
/// This function must be called before any other ImageMagick operations