Remove usage of in_band_lifetimes feature

This commit is contained in:
Taiki Endo
2019-08-29 21:16:11 +09:00
parent f393938515
commit 58a32490c5
17 changed files with 49 additions and 50 deletions

View File

@ -9,7 +9,7 @@ pub struct GenericView<'value> {
value: &'value Value,
}
impl RenderView for GenericView<'value> {
impl RenderView for GenericView<'_> {
fn render_view(&self, host: &mut dyn Host) -> Result<(), ShellError> {
match self.value {
Value::Primitive(p) => Ok(host.stdout(&p.format(None))),