mirror of
https://github.com/nushell/nushell.git
synced 2025-04-16 09:18:21 +02:00
7 lines
157 B
Rust
7 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>;
|
|
}
|