[][src]Trait reffers::rc::Repr

pub unsafe trait Repr {
    type Store;
}

This is an implementation detail. Please don't mess with it.

It's for abstracting over sized and unsized types.

Associated Types

type Store

Loading content...

Implementations on Foreign Types

impl<T> Repr for [T][src]

type Store = CSlice<T>

impl Repr for str[src]

type Store = CSlice<u8>

Loading content...

Implementors

impl<T> Repr for T[src]

type Store = T

Loading content...