pub enum Named {
Ran(Verdict),
Unknown,
Ambiguous(Vec<String>),
}Expand description
What run_named resolved a name to.
Variants§
Ran(Verdict)
Unknown
Nothing matches — full id, short name, or entrypoint.
Ambiguous(Vec<String>)
A short name that reaches more than one check; the caller lists them so the user can pick a full id.
Auto Trait Implementations§
impl Freeze for Named
impl RefUnwindSafe for Named
impl Send for Named
impl Sync for Named
impl Unpin for Named
impl UnsafeUnpin for Named
impl UnwindSafe for Named
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