feat(complete): Allow any OsString-compatible type to be a CompletionCandidate

This commit is contained in:
Ed Page 2024-08-21 14:25:40 -05:00
parent bb6493e890
commit 951762db57

View file

@ -65,3 +65,9 @@ impl CompletionCandidate {
self.hidden
}
}
impl<S: Into<OsString>> From<S> for CompletionCandidate {
fn from(s: S) -> Self {
CompletionCandidate::new(s.into())
}
}