pub struct ShellOptions {
nvim_bin_path: Option<String>,
timeout: Option<Duration>,
args_for_neovim: Vec<String>,
input_data: Option<String>,
cterm_colors: bool,
}
Fields§
§nvim_bin_path: Option<String>
§timeout: Option<Duration>
§args_for_neovim: Vec<String>
§input_data: Option<String>
§cterm_colors: bool
Implementations§
Source§impl ShellOptions
impl ShellOptions
Trait Implementations§
Source§impl Clone for ShellOptions
impl Clone for ShellOptions
Source§fn clone(&self) -> ShellOptions
fn clone(&self) -> ShellOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ShellOptions
impl RefUnwindSafe for ShellOptions
impl Send for ShellOptions
impl Sync for ShellOptions
impl Unpin for ShellOptions
impl UnwindSafe for ShellOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more