Trait situ::ops::IndexMutRaw
source · [−]pub trait IndexMutRaw<Idx>: IndexRaw<Idx> {
fn index_mut_raw(this: Mut<'_, Self>, index: Idx) -> Mut<'_, Self::Output>;
unsafe fn index_mut_raw_unchecked(
this: Mut<'_, Self>,
index: Idx
) -> Mut<'_, Self::Output>;
}
Expand description
A variant of IndexMut
that works with raw references.