pub enum ResolvedId {
Found(Id),
NotFound,
Ambiguous(Vec<Id>),
}Expand description
Result of resolving a user-typed id or prefix against the full id set.
Variants§
Auto Trait Implementations§
impl Freeze for ResolvedId
impl RefUnwindSafe for ResolvedId
impl Send for ResolvedId
impl Sync for ResolvedId
impl Unpin for ResolvedId
impl UnsafeUnpin for ResolvedId
impl UnwindSafe for ResolvedId
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