pub enum CallError {
Deser(DeserError),
NeedMutable,
NoSuchFunction,
}
Variants§
Deser(DeserError)
NeedMutable
Signals the Climber stack to retract into a mutable path so that the field we are attempting to operate on will be recalled in a mutable state.
NoSuchFunction
The called function does not exist.
Trait Implementations§
impl Eq for CallError
impl StructuralPartialEq for CallError
Auto Trait Implementations§
impl Freeze for CallError
impl RefUnwindSafe for CallError
impl Send for CallError
impl Sync for CallError
impl Unpin for CallError
impl UnwindSafe for CallError
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