pub struct ResolveError {
pub error: RecError,
pub suggestions: Vec<Suggestion>,
}Expand description
Error details when session resolution fails, including fuzzy suggestions.
Fields§
§error: RecErrorThe underlying error.
suggestions: Vec<Suggestion>Fuzzy suggestions for similar session names (empty if none found).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolveError
impl !RefUnwindSafe for ResolveError
impl Send for ResolveError
impl Sync for ResolveError
impl Unpin for ResolveError
impl !UnwindSafe for ResolveError
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