Trait lazy_concat::Sliceable[][src]

pub trait Sliceable: Length {
    type Slice: ?Sized;
    fn get_slice<R>(&self, range: R) -> &Self::Slice
    where
        R: RangeBounds<usize>
; fn as_ptr(&self) -> *const Self::Slice { ... } }

Associated Types

Required Methods

Provided Methods

Implementations on Foreign Types

impl<T> Sliceable for Vec<T>
[src]

impl Sliceable for String
[src]

Implementors