Home
last modified time | relevance | path

Searched refs:value (Results 1 – 3 of 3) sorted by relevance

/NovaShell/src/
H A Dkeycode.rs49 pub fn try_from(value: &[u8]) -> Option<Self> { in try_from()
50 match value { in try_from()
62 pub fn should_read_more(value: &[u8]) -> bool { in should_read_more()
63 match value.len() { in should_read_more()
65 1 => value[0] == Self::SUFFIX_0, in should_read_more()
66 2 => value[0] == Self::SUFFIX_0 && value[1] == 0x33, in should_read_more()
H A Dparser.rs351 fn from(value: i32) -> Self { in from()
352 RedirectStdout::RawPipe(value) in from()
357 fn from(mut value: Option<ChildStdout>) -> Self { in from()
358 RedirectStdout::Stdout(value.take()) in from()
/NovaShell/src/shell/command/
H A Dmod.rs239 let value = pair.get(1).unwrap().to_string(); in shell_cmd_export() localVariable
240 std::env::set_var(name, value); in shell_cmd_export()