1
2
3
4
pub struct Vector<T> {
    pub data: *mut T,
    pub length: usize,
}