Skip to content

Commit

Permalink
Shove errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jul 7, 2024
1 parent 96cf8f5 commit 49e064f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ pub use pixel_traits::{
arraylike::ArrayLike,
gain_alpha::GainAlpha,
has_alpha::HasAlpha,
het_pixel::{HetPixel, TryFromColorsAlphaError},
pixel::{Pixel, TryFromComponentsError},
het_pixel::HetPixel,
pixel::Pixel,
};

/// TryFrom errors
pub mod error {
pub use crate::pixel_traits::het_pixel::TryFromColorsAlphaError;
pub use crate::pixel_traits::pixel::TryFromComponentsError;

}

0 comments on commit 49e064f

Please sign in to comment.