pub enum CodePointInversionListError {
InvalidSet(Vec<u32>),
InvalidRange(u32, u32),
}
Expand description
Custom Errors for CodePointInversionList
.
Re-exported as Error
.
Variants§
InvalidSet(Vec<u32>)
A CodePointInversionList was constructed with an invalid inversion list
InvalidRange(u32, u32)
A CodePointInversionList was constructed containing an invalid range
Trait Implementations§
source§impl Debug for CodePointInversionListError
impl Debug for CodePointInversionListError
Auto Trait Implementations§
impl Freeze for CodePointInversionListError
impl RefUnwindSafe for CodePointInversionListError
impl Send for CodePointInversionListError
impl Sync for CodePointInversionListError
impl Unpin for CodePointInversionListError
impl UnwindSafe for CodePointInversionListError
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