#[repr(C, align(8))]pub struct string_view { /* private fields */ }Trait Implementations§
Source§impl ExternType for string_view
impl ExternType for string_view
Source§impl MakeCppStorage for string_view
impl MakeCppStorage for string_view
Source§unsafe fn allocate_uninitialized_cpp_storage() -> *mut string_view
unsafe fn allocate_uninitialized_cpp_storage() -> *mut string_view
Allocates heap space for this type in C++ and return a pointer
to that space, but do not initialize that space (i.e. do not
yet call a constructor). Read more
Source§unsafe fn free_uninitialized_cpp_storage(arg0: *mut string_view)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut string_view)
Frees a C++ allocation which has not yet
had a constructor called. Read more
impl UniquePtrTarget for string_view
impl WeakPtrTarget for string_view
Auto Trait Implementations§
impl Freeze for string_view
impl RefUnwindSafe for string_view
impl !Send for string_view
impl !Sync for string_view
impl !Unpin for string_view
impl UnwindSafe for string_view
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