mirror of
https://github.com/nushell/nushell
synced 2025-01-19 00:24:10 +00:00
fcbaefed52
* WIP * Get ready to land nu-table * Remove unwrap
6 lines
157 B
Rust
6 lines
157 B
Rust
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
|
|
pub(crate) trait RenderView {
|
|
fn render_view(&self, host: &mut dyn Host) -> Result<(), ShellError>;
|
|
}
|