pub enum NewPaletteError {
NoColors,
InvalidData {
line_num: usize,
val: String,
},
IoErr(Error),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NewPaletteError
impl !RefUnwindSafe for NewPaletteError
impl Send for NewPaletteError
impl Sync for NewPaletteError
impl Unpin for NewPaletteError
impl !UnwindSafe for NewPaletteError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more