Trait extendr_api::prelude::RawDataMut

source ·
pub unsafe trait RawDataMut: RawData { }
Expand description

Array representation trait.

For an array with writable elements.

Internal trait, see RawData.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, A> RawDataMut for CowRepr<'a, A>
where A: Clone,

source§

impl<'a, A> RawDataMut for ViewRepr<&'a mut A>

source§

impl<A> RawDataMut for OwnedArcRepr<A>
where A: Clone,

source§

impl<A> RawDataMut for OwnedRepr<A>

source§

impl<A> RawDataMut for RawViewRepr<*mut A>