Skip to main content

luminos_contracts/support/
vectorable.rs

1pub trait Vectorable{
2    type T;
3    
4    fn to_vec(&self) -> Vec<Self::T>;
5}