Struct nvim_gtk::popup_menu::PopupMenuContext[][src]

pub struct PopupMenuContext<'a> {
    pub nvim: &'a Rc<NeovimClient>,
    pub hl: &'a HighlightMap,
    pub font_ctx: &'a Context,
    pub menu_items: &'a [CompleteItem<'a>],
    pub selected: i64,
    pub x: i32,
    pub y: i32,
    pub width: i32,
    pub height: i32,
    pub max_width: i32,
}

Fields

nvim: &'a Rc<NeovimClient>hl: &'a HighlightMapfont_ctx: &'a Contextmenu_items: &'a [CompleteItem<'a>]selected: i64x: i32y: i32width: i32height: i32max_width: i32

Auto Trait Implementations

impl<'a> !RefUnwindSafe for PopupMenuContext<'a>

impl<'a> !Send for PopupMenuContext<'a>

impl<'a> !Sync for PopupMenuContext<'a>

impl<'a> Unpin for PopupMenuContext<'a>

impl<'a> !UnwindSafe for PopupMenuContext<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.