Trait HyprDataVec

pub trait HyprDataVec<T>: HyprData {
    // Required method
    fn to_vec(self) -> Vec<T>;
}
Expand description

This trait provides a standardized way to get data in a from of a vector

Required Methods§

fn to_vec(self) -> Vec<T>

This method returns a vector of data

Implementors§