pub enum UnpackOrderedSetError<T, I, P> {
Set(UnpackSetError<T, I, P>),
Unordered,
}Expand description
Error type raised when a semantic error occurs while unpacking an ordered set.
Variants§
Trait Implementations§
Source§impl<T, I, P> From<Infallible> for UnpackOrderedSetError<T, I, P>
impl<T, I, P> From<Infallible> for UnpackOrderedSetError<T, I, P>
Source§fn from(err: Infallible) -> Self
fn from(err: Infallible) -> Self
Converts to this type from the input type.
Source§impl<T, I, P> From<UnpackSetError<T, I, P>> for UnpackOrderedSetError<T, I, P>
impl<T, I, P> From<UnpackSetError<T, I, P>> for UnpackOrderedSetError<T, I, P>
Source§fn from(value: UnpackSetError<T, I, P>) -> Self
fn from(value: UnpackSetError<T, I, P>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T, I, P> Freeze for UnpackOrderedSetError<T, I, P>
impl<T, I, P> RefUnwindSafe for UnpackOrderedSetError<T, I, P>
impl<T, I, P> Send for UnpackOrderedSetError<T, I, P>
impl<T, I, P> Sync for UnpackOrderedSetError<T, I, P>
impl<T, I, P> Unpin for UnpackOrderedSetError<T, I, P>
impl<T, I, P> UnwindSafe for UnpackOrderedSetError<T, I, P>
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