You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
319 B
13 lines
319 B
use super::expression::Expression; |
|
use super::shell::Shell; |
|
use std::fmt::Write; |
|
|
|
/// For debugging purposes |
|
#[derive(Debug)] |
|
pub(crate) struct Raw(pub String); |
|
|
|
impl<S: Shell> Expression<S> for Raw { |
|
fn write_shell(&self, writer: &mut impl Write) -> std::fmt::Result { |
|
write!(writer, "{}", self.0) |
|
} |
|
}
|
|
|