pane.Pane.set_typed_option
Rust
- Python Unavailable
- TypeScript Unavailable
- Rust
- Go Unavailable
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Module
- pane
- Declared in
- Pane
- Package
- libtmux
- Source
- crates/libtmux/src/pane/settings.rs
- set_typed_option ( self , name : &str , value : impl Into<OptionValue> ) Result<(), Error>
-
Set one option to a typed value, checked before it is sent.
The value must be the variant
Self::typed_optionreads back for the option;OptionValuegives the rules, and the two writes it cannot check. The value is marked sensitive, as inSelf::set_option.Errors
Returns
crate::Error::OptionValueRefusedwithout sending anything when tmux's option table refuses the value.Returns
crate::Error::OptionScopeMismatchwhen tmux keeps the option in another of its tables, and an error when tmux rejects the name or value.Examples
// A choice takes the word it reads back as, not a flag.pane.set_typed_option("remain-on-exit", "failed").await?;
0 declared, 0 inherited