#[repr(C)]pub struct StringVecSlice {
pub ptr: *const AzString,
pub len: usize,
}Expand description
C-compatible slice type for $struct_name. This is a non-owning view into a Vec’s data.
Fields§
§ptr: *const AzString§len: usizeImplementations§
Trait Implementations§
Source§impl Clone for StringVecSlice
impl Clone for StringVecSlice
Source§fn clone(&self) -> StringVecSlice
fn clone(&self) -> StringVecSlice
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StringVecSlice
impl Debug for StringVecSlice
impl Copy for StringVecSlice
impl Send for StringVecSlice
impl Sync for StringVecSlice
Auto Trait Implementations§
impl Freeze for StringVecSlice
impl RefUnwindSafe for StringVecSlice
impl Unpin for StringVecSlice
impl UnsafeUnpin for StringVecSlice
impl UnwindSafe for StringVecSlice
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more