pub struct Exn<'a, V>(/* private fields */);Expand description
Exception.
This is either an error, a runtime halt, or control flow data internal to jaq. Users should only be able to observe the first two cases.
Use crate::unwrap_valr to convert a crate::ValX to an error.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, V> !Send for Exn<'a, V>
impl<'a, V> !Sync for Exn<'a, V>
impl<'a, V> Freeze for Exn<'a, V>
impl<'a, V> RefUnwindSafe for Exn<'a, V>where
V: RefUnwindSafe,
impl<'a, V> Unpin for Exn<'a, V>
impl<'a, V> UnsafeUnpin for Exn<'a, V>
impl<'a, V> UnwindSafe for Exn<'a, V>where
V: UnwindSafe + RefUnwindSafe,
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