Struct neovim_lib::neovim_api::Tabpage
[−]
[src]
pub struct Tabpage { /* fields omitted */ }
Methods
impl Tabpage
[src]
fn new(code_data: Value) -> Tabpage
[src]
fn get_value(&self) -> &Value
[src]
Internal value, that represent type
fn list_wins(&self, neovim: &mut Neovim) -> Result<Vec<Window>, CallError>
[src]
since: 1
fn get_var(&self, neovim: &mut Neovim, name: &str) -> Result<Value, CallError>
[src]
since: 1
fn set_var(
&self,
neovim: &mut Neovim,
name: &str,
value: Value
) -> Result<(), CallError>
[src]
&self,
neovim: &mut Neovim,
name: &str,
value: Value
) -> Result<(), CallError>
since: 1
fn del_var(&self, neovim: &mut Neovim, name: &str) -> Result<(), CallError>
[src]
since: 1
fn get_win(&self, neovim: &mut Neovim) -> Result<Window, CallError>
[src]
since: 1
fn get_number(&self, neovim: &mut Neovim) -> Result<u64, CallError>
[src]
since: 1
fn is_valid(&self, neovim: &mut Neovim) -> Result<bool, CallError>
[src]
since: 1
Trait Implementations
impl PartialEq for Tabpage
[src]
fn eq(&self, __arg_0: &Tabpage) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Tabpage) -> bool
[src]
This method tests for !=
.
impl Clone for Tabpage
[src]
fn clone(&self) -> Tabpage
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more