#[repr(C)]pub struct CSTL_UTF8StringVal {
pub bx: CSTL_UTF8StringUnion,
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_UTF8StringUnion§size: usize§res: usizeTrait Implementations§
Source§impl Clone for CSTL_UTF8StringVal
impl Clone for CSTL_UTF8StringVal
Source§fn clone(&self) -> CSTL_UTF8StringVal
fn clone(&self) -> CSTL_UTF8StringVal
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 moreimpl Copy for CSTL_UTF8StringVal
Auto Trait Implementations§
impl Freeze for CSTL_UTF8StringVal
impl RefUnwindSafe for CSTL_UTF8StringVal
impl !Send for CSTL_UTF8StringVal
impl !Sync for CSTL_UTF8StringVal
impl Unpin for CSTL_UTF8StringVal
impl UnwindSafe for CSTL_UTF8StringVal
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