#[repr(C)]pub struct CSTL_StringVal {
pub bx: CSTL_StringVal__bindgen_ty_1,
pub size: usize,
pub res: usize,
}Expand description
STL ABI std::basic_string layout.
Does not include the allocator, which nonetheless is a part of the std::basic_string
structure! You are responsible for including it, since it can take on any form.
Do not manipulate the members directly, use the associated functions!
Fields§
§bx: CSTL_StringVal__bindgen_ty_1§size: usize§res: usizeAuto Trait Implementations§
impl Freeze for CSTL_StringVal
impl RefUnwindSafe for CSTL_StringVal
impl !Send for CSTL_StringVal
impl !Sync for CSTL_StringVal
impl Unpin for CSTL_StringVal
impl UnwindSafe for CSTL_StringVal
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