Struct base64_simd::OutBuf
source · [−]pub struct OutBuf<'a, T> { /* private fields */ }
Expand description
A write-only slice of T.
Implementations
sourceimpl<'a, T> OutBuf<'a, T>
impl<'a, T> OutBuf<'a, T>
sourcepub unsafe fn new(base: *mut T, len: usize) -> OutBuf<'a, T>
pub unsafe fn new(base: *mut T, len: usize) -> OutBuf<'a, T>
Returns an OutBuf<'a, T>
Safety
This function requires:
- It’s safe to call
slice::from_raw_parts_mut(base.cast::<MaybeUninit<T>>(), len)
See also slice::from_raw_parts_mut
pub fn from_slice_mut(slice: &'a mut [T]) -> OutBuf<'a, T>
pub fn from_uninit_mut(slice: &'a mut [MaybeUninit<T>]) -> OutBuf<'a, T>
pub fn is_empty(&self) -> bool
pub fn len(&self) -> usize
pub fn as_mut_ptr(&self) -> *mut T
Trait Implementations
impl<'a, T> Send for OutBuf<'a, T> where
T: Send,
impl<'a, T> Sync for OutBuf<'a, T> where
T: Sync,
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for OutBuf<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Unpin for OutBuf<'a, T>
impl<'a, T> !UnwindSafe for OutBuf<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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