[][src]Struct rkyv::core_impl::ArchivedStringSlice

#[repr(transparent)]pub struct ArchivedStringSlice { /* fields omitted */ }

A reference to an archived string slice.

It implements a handful of helper functions and traits to function similarly to str.

Trait Implementations

impl Borrow<str> for ArchivedStringSlice[src]

impl CheckBytes<ArchiveContext> for ArchivedStringSlice[src]

type Error = ArchivedStringSliceError

The error that may result from validating the type.

impl Debug for ArchivedStringSlice[src]

impl Deref for ArchivedStringSlice[src]

type Target = str

The resulting type after dereferencing.

impl DerefMut for ArchivedStringSlice[src]

impl Display for ArchivedStringSlice[src]

impl Eq for ArchivedStringSlice[src]

impl Hash for ArchivedStringSlice[src]

impl Ord for ArchivedStringSlice[src]

impl PartialEq<ArchivedStringSlice> for ArchivedStringSlice[src]

impl PartialOrd<ArchivedStringSlice> for ArchivedStringSlice[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.