Trait StrOrArrI64

Source
pub trait StrOrArrI64 {
    // Required method
    fn to_arr(self) -> Vec<i64>;
}

Required Methods§

Source

fn to_arr(self) -> Vec<i64>

Implementations on Foreign Types§

Source§

impl StrOrArrI64 for &str

Source§

fn to_arr(self) -> Vec<i64>

Source§

impl StrOrArrI64 for Vec<i64>

Source§

fn to_arr(self) -> Vec<i64>

Implementors§