Struct core::raw::SliceExperimental [-]  [+] [src]

pub struct Slice<T> {
    pub data: *const T,
    pub len: uint,
}

The representation of a Rust slice

Fields

data
len

Trait Implementations

impl<T> Copy for Slice<T>