Struct std::raw::SliceUnstable [-] [+] [src]

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

The representation of a slice like &[T].

This struct is guaranteed to have the layout of types like &[T], &str, and Box<[T]>, but is not the type of such slices (e.g. the fields are not directly accessible on a &[T]) nor does it control that layout (changing the definition will not change the layout of a &[T]). It is only designed to be used by unsafe code that needs to manipulate the low-level details.

However, it is not recommended to use this type for such code, since there are alternatives which may be safer:

If one does decide to convert a slice value to a Slice, the Repr trait in this module provides a method for a safe conversion from &[T] (and &str) to a Slice, more type-safe than a call to transmute.

Examples

fn main() { use std::raw::{self, Repr}; let slice: &[u16] = &[1, 2, 3, 4]; let repr: raw::Slice<u16> = slice.repr(); println!("data pointer = {:?}, length = {}", repr.data, repr.len); }
use std::raw::{self, Repr};

let slice: &[u16] = &[1, 2, 3, 4];

let repr: raw::Slice<u16> = slice.repr();
println!("data pointer = {:?}, length = {}", repr.data, repr.len);

Fields

data
len

Trait Implementations

impl<T> Copy for Slice<T>