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