pub enum ChiselSourceError<U> {
Underlying(U),
EndOfInput,
}Expand description
The common error type for operations on ChiselSources.
Variants§
Underlying(U)
An error occurred while handling underlying source operations (e.g. an I/O error)
EndOfInput
Encountered unexpected end-ofinput while performing the operation
Trait Implementations§
Auto Trait Implementations§
impl<U> Freeze for ChiselSourceError<U>where
U: Freeze,
impl<U> RefUnwindSafe for ChiselSourceError<U>where
U: RefUnwindSafe,
impl<U> Send for ChiselSourceError<U>where
U: Send,
impl<U> Sync for ChiselSourceError<U>where
U: Sync,
impl<U> Unpin for ChiselSourceError<U>where
U: Unpin,
impl<U> UnwindSafe for ChiselSourceError<U>where
U: UnwindSafe,
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