pub enum OwnedMutSliceInner<'a, T: 'a + Sized> {
    RefRaw(*mut T, usize),
    Ref(&'a mut [T]),
    Owned(Vec<T>),
}
Expand description

Wrap a mutable slice and convert to a Vec on serialize. We use a hidden inner enum so the public API can be safe, unless the user uses the unsafe OwnedMutSlice::from_raw_parts_mut

Variants§

§

RefRaw(*mut T, usize)

A raw ptr to a memory location and a length

§

Ref(&'a mut [T])

A ptr to a mutable slice of the type

§

Owned(Vec<T>)

An owned Vec of the type

Trait Implementations§

source§

impl<'a, T: Debug + 'a + Sized> Debug for OwnedMutSliceInner<'a, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, 'a, T: 'a + Sized> Deserialize<'de> for OwnedMutSliceInner<'a, T>
where Vec<T>: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'a, T: 'a + Sized + Serialize> Serialize for OwnedMutSliceInner<'a, T>

source§

fn serialize<S>(&self, se: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<'a, T> RefUnwindSafe for OwnedMutSliceInner<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> !Send for OwnedMutSliceInner<'a, T>

§

impl<'a, T> !Sync for OwnedMutSliceInner<'a, T>

§

impl<'a, T> Unpin for OwnedMutSliceInner<'a, T>
where T: Unpin,

§

impl<'a, T> !UnwindSafe for OwnedMutSliceInner<'a, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Tail, T> Prepend<T> for Tail

§

type PreprendResult = Tail

The Resulting TupleList, of an Prepend::prepend() call, including the prepended entry.
source§

fn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)

Prepend a value to this tuple, returning a new tuple with prepended value.
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,