#[repr(C)]pub struct CSTL_VectorVal {
pub first: *mut c_void,
pub last: *mut c_void,
pub end: *mut c_void,
}Expand description
STL ABI std::vector layout.
Does not include the allocator, which nonetheless is a part of the std::vector
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§
§first: *mut c_void§last: *mut c_void§end: *mut c_voidTrait Implementations§
Source§impl Clone for CSTL_VectorVal
impl Clone for CSTL_VectorVal
Source§fn clone(&self) -> CSTL_VectorVal
fn clone(&self) -> CSTL_VectorVal
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_VectorVal
Auto Trait Implementations§
impl Freeze for CSTL_VectorVal
impl RefUnwindSafe for CSTL_VectorVal
impl !Send for CSTL_VectorVal
impl !Sync for CSTL_VectorVal
impl Unpin for CSTL_VectorVal
impl UnwindSafe for CSTL_VectorVal
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