Struct nstd_sys::core::slice::NSTDSliceMut
source · #[repr(C)]pub struct NSTDSliceMut { /* private fields */ }Available on crate feature
nstd_core only.Expand description
A view into a sequence of values in memory.
Safety
The user of this structure must ensure that the pointed-to data remains valid, unmodified, and unreferenced in any other code while an instance of this structure is in use, else data races may occur.
Trait Implementations
sourceimpl Clone for NSTDSliceMut
impl Clone for NSTDSliceMut
sourcefn clone(&self) -> NSTDSliceMut
fn clone(&self) -> NSTDSliceMut
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for NSTDSliceMut
impl Debug for NSTDSliceMut
sourceimpl Hash for NSTDSliceMut
impl Hash for NSTDSliceMut
impl Copy for NSTDSliceMut
Auto Trait Implementations
impl RefUnwindSafe for NSTDSliceMut
impl !Send for NSTDSliceMut
impl !Sync for NSTDSliceMut
impl Unpin for NSTDSliceMut
impl UnwindSafe for NSTDSliceMut
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more