pub trait IntListOption {
    // Required methods
    fn as_ptr(&self) -> *const i64;
    fn len_i32(&self) -> i32;
}

Required Methods§

source

fn as_ptr(&self) -> *const i64

source

fn len_i32(&self) -> i32

Implementations on Foreign Types§

source§

impl<T: IntListOption_> IntListOption for Option<T>

source§

fn as_ptr(&self) -> *const i64

source§

fn len_i32(&self) -> i32

Implementors§

source§

impl<T: IntListOption_> IntListOption for T