Struct neovim::Function [] [src]

pub struct Function {
    pub name: String,
    pub parameters: Vec<(String, String)>,
    pub return_type: String,
    pub async: bool,
    pub can_fail: bool,
}

A function as parsed from get_api_info().

Fields

Trait Implementations

impl Display for Function
[src]

Formats the value using the given formatter. Read more