Enum neovim_lib::Integer [] [src]

pub enum Integer {
    U64(u64),
    I64(i64),
}

Variants

Every non-negative integer is treated as u64, even if it fits in i64.

Every negative integer is treated as i64.

Trait Implementations

impl Copy for Integer
[src]

impl Clone for Integer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Integer
[src]

Formats the value using the given formatter.

impl PartialEq for Integer
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.